@extends('layouts.app') @section('styles') @endsection @section('content')
{{ csrf_field() }}

{{ trans('panel.site_title') }}

{{ trans('global.register') }}

@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('identity_card_number'))
{{ $errors->first('identity_card_number') }}
@endif
@if($errors->has('dob'))
{{ $errors->first('dob') }}
@endif
@if($errors->has('address_1'))
{{ $errors->first('address_1') }}
@endif
@if($errors->has('address_2'))
{{ $errors->first('address_2') }}
@endif
@if($errors->has('state'))
{{ $errors->first('state') }}
@endif
@if($errors->has('city'))
{{ $errors->first('city') }}
@endif
@if($errors->has('password'))
{{ $errors->first('password') }}
@endif
@endsection @section('scripts') @endsection