@extends('layouts.app') @section('title', 'Add Staff') @section('content')

Add Staff

Add New Staff

{{-- Staff Form --}}
@csrf {{-- Personal Information --}}
Personal Information
{{-- Full Name --}}
@error('user_name') {{ $message }} @enderror
{{-- Email --}}
@error('user_email') {{ $message }} @enderror

{{-- Account Information --}}
Account Information
{{-- Password --}}
@error('password') {{ $message }} @enderror
{{-- Confirm Password --}}

{{-- Role --}}
Role
@foreach($roles as $role)
role_id ? 'checked' : '' }} required >
@endforeach @error('role_id')
{{ $message }} @enderror

{{-- Status --}}
Status
{{-- Buttons --}}
Cancel
@endsection