@extends('layouts.app') @if (isset($staff) && $staff->exists) @section('title', 'Add Staff') @else @section('title', 'Edit Staff') @endif @section('content') @if(isset($staff)) @livewire('doctor.staff.staff-form', ['staff' => $staff , 'doctor' => $doctor]) @else @livewire('doctor.staff.staff-form') @endif @endsection