@extends('theme2.master') @section('title', 'Sign Up') @section('content') @include('admin.message')
img

{{ __('Create an account') }}

@csrf
@if ($errors->has('fname')) {{ $errors->first('fname') }} @endif
@if($errors->has('lname')) {{ $errors->first('lname') }} @endif
@if($errors->has('email')) {{ $errors->first('email') }} @endif
@if($gsetting->mobile_enable == 1)
@if($errors->has('mobile')) {{ $errors->first('mobile') }} @endif
@endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if($gsetting->captcha_enable == 1)
{!! app('captcha')->display() !!} @if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif
@endif
@endsection