@extends('layouts.admin') @section('title', isset($staff) ? 'Edit Staff' : 'Add Staff') @section('page-title', isset($staff) ? 'Edit Staff' : 'Add Staff') @section('content')
@csrf @if(isset($staff)) @method('PUT') @endif @if($errors->any())
{{ $errors->first() }}
@endif {{-- Avatar Upload --}}
👤
Avatar
JPG, PNG, WebP — max 4 MB
@if(!empty($staff->avatar_url))
Upload a new photo to replace the current one.
@endif
@push('scripts') @endpush @endsection