@extends('layouts.main') @section('content')

{{ __('referral_hospitals.edit_referral_hospital') }}

@include('clinical_data::referral_hospitals.menu')
@include('flash::message')
{{ Form::model($referral_hospital, ['method' => 'PUT', 'route' => ['referral_hospitals.update',$referral_hospital] , 'data-toggle' => 'validator']) }}
{{ Form::label('name', __('referral_hospitals.hospital_name')) }} {{ Form::text('name', $referral_hospital->name, ['class' => 'form-control compulsory','required']) }}
{{ Form::button(__('referral_hospitals.submit'),['type'=>'submit','class'=>'btn btn-success waves-effect waves-light m-r-10']) }} {{ Form::button(__('referral_hospitals.cancel'),['type'=>'reset','class'=>'btn btn-default waves-effect waves-light']) }} {{ Form::close() }}
@endsection @push('scripts') @endpush