@extends('layouts.app', ['class' => 'bg-default']) @if (strlen(config('settings.recaptcha_site_key'))>2) @section('head') {!! htmlScriptTagJsApi([]) !!} @endsection @endif @section('content') @include('layouts.headers.guest')
@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if(config('settings.enable_birth_date_on_register'))
@if ($errors->has('birth_date')) {{ $errors->first('birth_date') }} @endif
@endif
@if (Route::has('password.request')) {{ __('Forgot password?') }} @endif
@endsection