Logo
@include('Header')
Main Image






Register

@if ($errors->any())
@endif @if(session('error'))
{{ session('error') }}
@endif
@csrf
@if($errors->has('first-name'))
{{ $errors->first('first-name') }}
@endif
@if($errors->has('last-name'))
{{ $errors->first('last-name') }}
@endif
@if($errors->has('username'))
{{ $errors->first('username') }}
@endif
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if($errors->has('phone'))
{{ $errors->first('phone') }}
@endif
@if ($errors->has('biography')) {{ $errors->first('biography') }} @endif

Already have an account? Login now




@include('Footer')