@extends('layouts.admin') @section('content') Add New Admin {{ 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 Male 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 Password @if ($errors->has('password')) {{ $errors->first('password') }} @endif Confirm Password Admin Permission Partial Access Fully Access @endsection