@if (isRole('doctor'))
{{ Form::open(['route' => ['doctors.smart-patient-cards.update', $smart_patient_cards->id], 'method' => 'put','files' => 'true','id' => 'editSmartPatientCardsForm']) }}
@endif
@if (isRole('clinic_admin'))
{{ Form::open(['route' => ['smart-patient-cards.update', $smart_patient_cards->id], 'method' => 'put','files' => 'true','id' => 'editSmartPatientCardsForm']) }}
@endif
{{ Form::hidden('is_edit', true,['id' => 'smart_patient_cardsIsEdit']) }}
@include('smart_patient_cards.fields')
{{ Form::close() }}