@extends('layouts.app') @section('title', 'Edit Staff') @section('content')
{{-- Page Heading --}}

Edit Staff

{{-- Edit Staff Card --}}

Edit Staff Information

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

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

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

{{-- Status --}}
Status
{{-- Active --}}
is_active ) == '1' ? 'checked' : '' }} >
{{-- Inactive --}}
is_active ) == '0' ? 'checked' : '' }} >
{{-- Buttons --}}
Back
@endsection