@extends('layouts.app', ['class' => config('app.isloyalty')?"":'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 (strlen(config('settings.recaptcha_site_key'))>2) @if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif {!! htmlFormButton(__('Save'), ['id'=>'thesubmitbtn','class' => 'btn btn-success mt-4', 'disabled'=>"true"]) !!} @else @endif

@if (Route::has('password.request')) {{ __('Forgot password?') }} @endif
@endsection