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

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

@include('clinical_data::drug_units.menu')
@include('flash::message')
{{ Form::open(['route' => 'drug_units.store','data-toggle'=>'validator']) }}
{{ Form::label('name', __('drug_units.drug_unit_name')) }} {{ Form::text('name', '', ['class' => 'form-control compulsory', 'required']) }}
{{ 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 @push('scripts') @endpush