@extends('layouts.main') @push('styles') @endpush @section('content')

{{ __('clinical_data.edit_radiologies') }}

@include('investigations::radiologies.menu')
@include('flash::message')
{{ Form::model($radiology, ['method' => 'PUT', 'route' => ['radiology.update',$radiology], 'data-toggle' => 'validator']) }}
{{ Form::label('name', __('clinical_data.name')) }} {{ Form::text('name',$radiology->item_name,['class' => 'form-control compulsory', 'required']) }}
{{ Form::label('cost_price', __('clinical_data.item_cost_price')) }} {{ Form::text('cost_price', $radiology->cost_price,['class' => 'form-control compulsory', 'required']) }}
{{ Form::label('payables_account_id', __('clinical_data.payables_account')) }} {{ Form::select('payables_account_id', $payables_accounts, $radiology->payables_account_id, ['class' => 'form-control drop']) }}
{{ Form::label('expenses_account_id', __('clinical_data.expenses_account')) }} {{ Form::select('expenses_account_id', $expenses_accounts, $radiology->expenses_account_id, ['class' => 'form-control drop']) }}
{{ Form::label('form_id', __('clinical_data.form')) }} {{ Form::select('form_id', $forms, $radiology->form_id, ['class' => 'form-control drop', 'required']) }}
{{ Form::label('re_order_level_id', __('labs.reorder_level') ) }} {{ Form::number('re_order_level', $radiology->reorder_level, ['class' => 'form-control ']) }}
{{ Form::button('Submit',['type'=>'submit','class'=>'btn btn-success waves-effect waves-light m-r-10']) }} {{ Form::button('Cancel',['type'=>'reset','class'=>'btn btn-default waves-effect waves-light']) }} {{ Form::close() }}
@endsection @push('scripts') @endpush