@extends('layouts.admin') @section('content')
Edit Officer
{{ csrf_field() }}
First Name
@if ($errors->has('fname'))
{{ $errors->first('fname') }}
@endif
Middle Name
Last Name
@if ($errors->has('lname'))
{{ $errors->first('lname') }}
@endif
Profile Image
@if ($errors->has('image'))
{{ $errors->first('image') }}
@endif
Email
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
gender == 'male' ? 'checked' : '' }} > Male
gender == 'female' ? 'checked' : '' }} > Female
Address
@if ($errors->has('address'))
{{ $errors->first('address') }}
@endif
Date Of Birth
@if ($errors->has('dob'))
{{ $errors->first('dob') }}
@endif
Phone Number
@if ($errors->has('phone_number'))
{{ $errors->first('phone_number') }}
@endif
Batch No
@if ($errors->has('batch_no'))
{{ $errors->first('batch_no') }}
@endif
Alloted Region
@if ($errors->has('allowed_reg'))
{{ $errors->first('allowed_reg') }}
@endif
@endsection