@extends('layouts.main') @section('title', '| Edit Drug Unit') @section('content')

{{ __('drug_units.edit_drug_unit') }}

@include('clinical_data::drug_units.menu')
@include('flash::message')
{{ Form::model($drug_unit, ['method' => 'PUT', 'route' => ['drug_units.update',$drug_unit]]) }}
{{ Form::label('name', __('drug_units.drug_unit_name')) }} {{ Form::text('name', $drug_unit->name, ['class' => 'form-control compulsory']) }}
{{ Form::button( __('drug_units.save'),['type'=>'submit','class'=>'btn btn-success btn-rounded waves-effect waves-light m-r-10']) }} {{ Form::button( __('drug_units.cancel'),['type'=>'reset','class'=>'btn btn-default btn-rounded waves-effect waves-light']) }} {{ Form::close() }}
@endsection