@extends('frontend.provider.app') @section('title', __('edit_staff')) @section('content')
{{__('back_to_staff')}} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@include('provider.staff.partials.form-information', ['staff' => $staff])
{{__('Cancel')}}
@include('provider.staff.partials.form-availability', ['staff' => $staff])
@endsection @push('scripts') @endpush