@include('layouts.style') @include('layouts.nav')

Taxi Sign Up

@if(Session::has( 'success' ))
{{ Session::get( 'success' ) }}
@elseif( Session::has( 'warning' ))
{{ Session::get( 'warning' ) }}
@endif
@csrf
{{ $errors->has('name') ? $errors->first('name') : '' }}
{{ $errors->has('mobile') ? $errors->first('mobile') : '' }}
{{ $errors->has('email') ? $errors->first('email') : '' }}
{{ $errors->has('password') ? $errors->first('password') : '' }}
{{ $errors->has('vehicle_type') ? $errors->first('vehicle_type') : '' }}
{{ $errors->has('vehicle_name') ? $errors->first('vehicle_name') : '' }}
{{ $errors->has('vehicle_model') ? $errors->first('vehicle_model') : '' }}
{{ $errors->has('vehicle_number') ? $errors->first('vehicle_number') : '' }}
@include('layouts.footer') @include('layouts.script')