@extends('layouts.app') @section('title', 'Edit Staff Profile | Institution Axis') @section('sidebar-menu') @include('schooladmin.partials.sidebar') @endsection @section('sidebar-footer')

{{ auth()->user()->school?->name ?? 'Institution Axis' }}

@endsection @section('breadcrumb') Home / Staff / {{ $staff->full_name }} / Edit @endsection @section('navbar-right')
5
@endsection @section('content')

Edit Staff Profile

Update {{ $staff->full_name }}'s information
Back to Profile
@if($errors->any())
@endif
@csrf @method('PUT')
{{ $staff->full_name }}
{{ $staff->user->email }}
@error('staff_number')
{{ $message }}
@enderror
Cancel
@endsection