@extends('layouts.app') @section('title') {{ __('messages.smart_patient_card.edit_patient_card') }} @endsection @section('content')

@yield('title')

{{ __('messages.common.back') }}
@include('layouts.errors')
@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() }}
@endsection