@extends('layouts.app')
@section('title')
{{ __('messages.smart_patient_card.generate_patient_smart_cards') }}
@endsection
@section('content')
@include('flash::message')
{{-- {{ Form::hidden('categoryCreateUrl', route('generate-patient-smart-cards.store'), ['id' => 'indexTemplateCreateUrl']) }} --}}
@if (isRole('doctor'))
{{ Form::hidden('categoryCreateUrl', route('doctors.generate-patient-smart-cards.store'), ['id' => 'indexTemplateCreateUrl']) }}
@endif
@if (isRole('clinic_admin'))
{{ Form::hidden('categoryCreateUrl', route('generate-patient-smart-cards.store'), ['id' => 'indexTemplateCreateUrl']) }}
@endif
@include('generate_patient_smart_cards.components.modal')
@include('generate_patient_smart_cards/components/show_card')
@endsection