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

{{ __('investigations.edit_investigation') }}

@include('investigations::radiologies.menu')
@include('flash::message')
{{ Form::model($radiologies, ['method' => 'ANY', 'route' => ['radiology.update_all', 'data-toggle' => 'validator']]) }}
@foreach($radiologies as $investigation) @endforeach
{{ __('clinical_data.name') }} {{ __('clinical_data.item_cost_price') }} {{ __('clinical_data.payables_account') }} {{ __('clinical_data.expenses_account') }} {{ __('clinical_data.form') }} {{ __('labs.reorder_level') }}

{{ $investigation->name }}

{{ Form::text('name[]', $investigation->name, ['class' => 'form-control compulsory', 'required']) }}
{{ Form::number('cost_price[]', $investigation->cost_price, ['class' => 'form-control compulsory', 'required']) }} {{ Form::select('payables_account_id[]',$payables_accounts,$investigation->payables_account_id,['class' => 'form-control drop']) }} {{ Form::select('expenses_account_id[]',$expense_accounts,$investigation->expenses_account_id,['class' => 'form-control drop']) }} {{ Form::select('form_id[]',$forms,$investigation->form_id,['class' => 'form-control drop']) }} {{ Form::number('re_order_level[]',$investigation->reorder_level,['class' => 'form-control ']) }}
{{ Form::button(__('investigations.submit'),['type'=>'submit','class'=>'btn btn-success waves-effect waves-light m-r-10']) }} {{ Form::button(__('investigations.cancel'),['type'=>'reset','class'=>'btn btn-default waves-effect waves-light']) }} {{ Form::close() }}
@endsection @push('scripts') @endpush