@if(!empty($favicon)) @endif

{{!empty($companyData) ? $companyData : '' }}

{!! csrf_field() !!} @foreach (['success', 'danger', 'fail', 'warning', 'info'] as $msg) @if($message = Session::get($msg))
{{ $message }}
@break @endif @endforeach
@if($errors->has('first_name'))

{{$errors->first('first_name')}}

@endif
@if($errors->has('last_name'))

{{$errors->first('last_name')}}

@endif
@if($errors->has('email'))

{{$errors->first('email')}}

@endif
@if($errors->has('password'))

{{$errors->first('password')}}

@endif
@if($errors->has('password_confirmation'))

{{$errors->first('password_confirmation')}}

@endif
@if ($captcha == "enable" && isset($captchaCredentials->site_key))
@if ($errors->has('g-recaptcha-response'))

{{ $errors->first('g-recaptcha-response') }}

@endif
@endif
{!! Form::submit('Sign Up', ['class' => 'btn btn-block btn-primary btn-order', 'id' => 'submitBtn']) !!}

{{ __('Already have an account?') }} {{ __('Log In') }}

{!! translateValidationMessages() !!}