@extends('admin.layouts.app', ['activePage' => 'user', 'titlePage' => __('Add New Admin User')]) @section('content')
@csrf

{{ __('Add New Customer') }}

@if (session('status'))
{{ session('status') }}
@endif
@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('mobile')) {{ $errors->first('mobile') }} @endif
@endsection @push('js') @endpush