Edit Doctor
{!! Form::text('doctorname', $doctor->doctorname, [
'class' => 'form-control',
'maxlength' => '100',
'placeholder' => 'Enter Doctor Name',
'disabled',
]) !!}
{!! Form::text('degree', $doctor->degree, [
'class' => 'form-control',
'maxlength' => '100',
'placeholder' => 'Enter Doctor Degree',
'Required',
]) !!}
{!! Form::text('city', $doctor->city, [
'class' => 'form-control',
'maxlength' => '100',
'placeholder' => 'Enter Doctor city',
'Required',
]) !!}
{!! Form::text('hospital', $doctor->hospital, [
'class' => 'form-control',
'maxlength' => '100',
'placeholder' => 'Enter Doctor Hospital',
'Required',
]) !!}
@if ($doctor->photo)
@endif