Edit Patient Image
{!! Form::open(['route' => ['patients.update.image', $patient->id], 'method' => 'PATCH', 'class' => 'form-horizontal', 'id' => 'edit-patient-image-form', 'enctype' => 'multipart/form-data']) !!}
{{ Form::label('profile_image', 'Patient Image', ['class' => 'col-md-2 col-form-label']) }}
{{ Form::file('profile_image', ['class' => 'form-control filestyle', 'id' => 'profile_image', 'style' => 'width:auto', 'placeholder' => 'Patient Image', 'data-btnClass' => 'btn-primary']) }}
{!! Form::close() !!}