@extends('layouts.app') @section('content') @include('layouts.sidebar')
Add Staff
@csrf

Staff Name

@if ($errors->has('name')) {{ $errors->first('name') }} @endif

Vehicle Number

@if ($errors->has('phone_number')) Vehicle number is required @endif

Mobile Number

@if ($errors->has('alternate_phone_number')) Mobile number is required @endif

Photo

@if ($errors->has('profile_photo')) {{ $errors->first('profile_photo') }} @endif

Driving License

@if ($errors->has('driving_licence')) {{ $errors->first('driving_licence') }} @endif

Password

@if ($errors->has('password')) {{ $errors->first('password') }} @endif

Address

@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@endsection