@extends('layouts.app') @section('title', 'Edit Director Appointment - ' . $company->company_name) @section('content')

Edit Director Appointment

{{ $company->company_name }} (CI: {{ $company->ci_number }})
@csrf @method('PUT')
@error('director_id')
{{ $message }}
@enderror
@error('date_of_appointment')
{{ $message }}
@enderror
@error('date_of_ceasing')
{{ $message }}
@enderror Leave empty if director is still active
@error('remarks')
{{ $message }}
@enderror
Cancel
Delete Appointment

Permanently delete this director appointment record.

@csrf @method('DELETE')
@endsection