@extends('layouts.admin.admin') @section('title', 'Create Subadmin') @section('content')
@include('partials.header') @include('layouts.admin.sidebar')
@include('partials.breadcrumbs')
Create Admin User
@csrf
@if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
@if ($errors->has('middle_name')) {{ $errors->first('middle_name') }} @endif
@if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
{{--
@if ($errors->has('gender')) {{ $errors->first('gender') }} @endif
--}}
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@stop