@extends('layouts.app') @section('title') {{ __('messages.medicine_bills.add_medicine_bill') }} @endsection @section('header_toolbar')

@yield('title')

{{ __('messages.patient.new_patient') }} {{ __('messages.common.back') }}
@endsection @section('content')
@include('layouts.errors') @include('flash::message')
{{Form::hidden('uniqueId',2,['id'=>'medicineUniqueId'])}} {{ Form::hidden('associateMedicines', json_encode($medicineList), ['class' => 'associatePurchaseMedicines']) }} {{ Form::hidden('medicineCategories', json_encode($medicineCategoriesList), ['id' => 'showMedicineCategoriesMedicineBill']) }} {{ Form::open(['route' => 'medicine-bills.store', 'method' => 'post', 'id' => 'createMedicinebillForm']) }}
@include('medicine-bills.medicine-table')
{{ Form::close() }}
@include('medicine-bills.templates.templates')
@include('medicine-bills.add_patient_modal') @endsection