芝麻web文件管理V1.00
编辑当前文件:/home/unicorntechnolog/public_html/mt5-ctrader/resources/views/auth/register.blade.php
@extends('auth.auth_template') @section('content')
@if(session()->has('error'))
{{ session()->get('error') }}
@endif @if(session('status'))
{{ session('status') }}
@endif
@lang('translate.sign_up')
@csrf
@lang('translate.enter_your_email_address')
*
@error('email')
{{ $message }}
@enderror
@lang('translate.enter_your_name')
*
@error('name')
{{ $message }}
@enderror
@lang('translate.enter_your_password')
*
@error('password')
{{ $message }}
@enderror
@lang('translate.confirm_your_password')
*
@error('password_confirmation')
{{ $message }}
@enderror
@lang('translate.country')
*
Select country
@foreach($countrylist as $country)
{{ $country->name }}
@endforeach
@error('country')
{{ $message }}
@enderror
@lang('translate.phone')
*
@error('phone')
{{ $message }}
@enderror
@lang('translate.sign_up')
Already have an Account?
@lang('translate.sign_in')
@endsection