@extends('layouts.main-layout') @section('title') All Users | Dashboard @endsection @section('content')
Create User
@csrf
Username
@error('username')
{{$errors->first('username')}}
@enderror
Email
@error('email')
{{$errors->first('email')}}
@enderror
Password
@error('password')
{{$errors->first('password')}}
@enderror
Confirm Password
@error('password_confirmation')
{{$errors->first('password_confirmation')}}
@enderror
Mobile Number
@error('mobile')
{{$errors->first('mobile')}}
@enderror
User Type
Choose User Type
@foreach($userTypes as $userType)
{{$userType->UserTypeName}}
@endforeach
@error('user_type')
{{$errors->first('user_type')}}
@enderror
Create
@endsection