@extends('backend.app') @section('content')
Update Doctor
@csrf @method('PUT')

{{ $doctor->doctorname }}

{{ $doctor->designation }}

{{ $doctor->speciality }}

{{ $doctor->hospitalname }}

@if($doctor->subject == "Other")

{{ $doctor->subject }} - {{ $doctor->other_subject }}

@else

{{ $doctor->subject }}

@endif

{{ $doctor->template }}

@error('status')
{{ $message }}
@enderror
{{-- Hidden initially, shown only when Rejected --}}
@if(Auth::user()->type == "Superadmin")
@endif
@if ($doctor->video) @endif
@endsection @section('footer') @endsection