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

Edit Company

@include('clinical_data::companies.menu')
@include('flash::message')
{{ Form::model($company, ['method' => 'PUT', 'route' => ['companies.update',$company]]) }}
{{ Form::label('name', 'Company Name') }} {{ Form::text('name', $company->name, ['class' => 'form-control compulsory']) }}
{{ Form::label('contact', 'Contact') }} {{ Form::text('contact', $company->contact, ['class' => 'form-control compulsory', 'required']) }}
{{ Form::label('identifier', 'Identifier') }} {{ Form::text('identifier', $company->slug, ['class' => 'form-control compulsory', 'required']) }}
{{ Form::button('Submit',['type'=>'submit','class'=>'btn btn-success btn-rounded waves-effect waves-light m-r-10']) }} {{ Form::button('Cancel',['type'=>'reset','class'=>'btn btn-default btn-rounded waves-effect waves-light']) }} {{ Form::close() }}
@endsection