@extends('master.front') @section('title') {{__('Login')}} @endsection @section('content')

{{__('Register')}}

@csrf
@error('first_name')

{{$message}}

@endif
@error('last_name')

{{$message}}

@endif
@error('email')

{{$message}}

@endif
@error('phone')

{{$message}}

@endif
@error('password')

{{$message}}

@endif
@if ($setting->recaptcha == 1)
{!! NoCaptcha::renderJs() !!} {!! NoCaptcha::display() !!} @if ($errors->has('g-recaptcha-response')) @php $errmsg = $errors->first('g-recaptcha-response'); @endphp

{{__("$errmsg")}}

@endif
@endif

{{ __("Already have an account ?") }} {{ __('Login now') }}

@endsection