@extends('admin.layouts.master') @section('admin-user', 'active') @section('title') Admin Create @endsection @push('style') @endpush @section('content')

{{ __('Admin Create') }}

{{ __('Admin Create') }} Back
@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('image')) {{ $errors->first('image') }} @endif
@if ($errors->has('role')) {{ $errors->first('role') }} @endif
@if ($errors->has('status')) {{ $errors->first('status') }} @endif
{{--
@if ($errors->has('username')) {{ $errors->first('username') }} @endif
--}}
@endsection @push('script') @endpush