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

{{ __('drug_routes.edit_drug_route') }}

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