Please enter first name
@if($errors->has('name')){{ $errors->first('name') }}
@endifPlease enter last name
@if($errors->has('last_name')){{ $errors->first('last_name') }}
@endif{{ $errors->first('email') }}
@endifPlease enter phone number
@if($errors->has('phone')){{ $errors->first('phone') }}
@endifPlease select role
@if($errors->has('role')){{ $errors->first('role') }}
@endifPlease enter password
@if($errors->has('password')){{ $errors->first('password') }}
@endifPlease enter confirm password
@if($errors->has('password_confirmation')){{ $errors->first('password_confirmation') }}
@endif