@extends('user.layouts.app') @section('content')

Accept Invitation from {{$agency_name}}

Note:
All fields with star (*) are required
Password Hint
@if(isset($password_setting)) {!! $password_setting !!} @endif
First/Last Name Hint
  • - First/Last Name not allow any special character
@if($user_exist!=1)
{{ csrf_field() }} @if($user_exist ==2) @endif
@if($user_exist ==2) @else
@if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
@endif
@if($user_exist ==2) @else
@if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
@endif
@if ($errors->has('email_address')) {{ $errors->first('email_address') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('password_confirmation')){{ $errors->first('password_confirmation') }}@endif
{!! NoCaptcha::renderJs() !!} {!! NoCaptcha::display(['data-theme' => 'light']) !!}
@if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif
@else
You already regitered with us. Please click on next button to Contract Agreement.
@endif
@endsection @section('scripts') @stop