@extends('admin.layouts.master') @section('page-title') Add User @endsection @section('main-content')
Create User
@csrf
@if ($errors->has('name')) @endif
@if ($errors->has('email')) @endif
@if ($errors->has('phone_number')) @endif
@if ($errors->has('address')) @endif
@error('role_id')
{{ $message }}
@enderror
@if ($errors->has('password')) @endif
@if ($errors->has('retype_password')) @endif
Back
@endsection @section('script') @endsection