@extends('layouts.admin') @section('content') {{trans('auth.Add New Officer')}} {{ csrf_field() }} {{trans('auth.First Name')}} @if ($errors->has('fname')) {{ $errors->first('fname') }} @endif {{trans('auth.Last Name')}} @if ($errors->has('lname')) {{ $errors->first('lname') }} @endif {{trans('auth.Middle Name')}} {{trans('auth.Profile Image')}} @if ($errors->has('image')) {{ $errors->first('image') }} @endif {{trans('auth.Email')}} @if ($errors->has('email')) {{ $errors->first('email') }} @endif {{trans('auth.Male')}} {{trans('auth.Female')}} {{trans('auth.Address')}} @if ($errors->has('address')) {{ $errors->first('address') }} @endif {{trans('auth.Date Of Birth')}} @if ($errors->has('dob')) {{ $errors->first('dob') }} @endif {{trans('auth.Phone Number')}} @if ($errors->has('phone_number')) {{ $errors->first('phone_number') }} @endif {{trans('auth.Batch No')}} @if ($errors->has('batch_no')) {{ $errors->first('batch_no') }} @endif {{trans('auth.Alloted Region')}} @if ($errors->has('allowed_reg')) {{ $errors->first('allowed_reg') }} @endif {{trans('auth.Password')}} @if ($errors->has('password')) {{ $errors->first('password') }} @endif {{trans('auth.Confirm Password')}} @endsection