Files
streamline-emr/docker/statistics/Modules/ClinicalData/Resources/views/referral_hospitals/edit.blade.php
T
2025-03-31 03:46:05 +03:00

48 lines
1.8 KiB
PHP
Executable File

@extends('layouts.main')
@section('content')
<div class="row bg-title">
<div class="col-lg-3 col-md-4 col-sm-4 col-xs-12">
<h4 class="page-title">{{ __('referral_hospitals.edit_referral_hospital') }}</h4>
</div>
<div class="col-lg-9 col-sm-8 col-md-8 col-xs-12">
<ol class="breadcrumb">
<li><a href="{{ route('home') }}">{{ __('referral_hospitals.dashboard') }}</a></li>
<li><a href="/referral_hospitals/">{{ __('referral_hospitals.referral_hospital') }}</a></li>
<li class="active">{{ __('referral_hospitals.edit') }}</li>
</ol>
</div>
<!-- /.col-lg-12 -->
</div>
<div class="row">
<div class="col-sm-12">
@include('clinical_data::referral_hospitals.menu')
</div>
</div>
<div class="row">
<div class="col-sm-12">
@include('flash::message')
<div class="white-box">
{{ Form::model($referral_hospital, ['method' => 'PUT', 'route' => ['referral_hospitals.update',$referral_hospital] , 'data-toggle' => 'validator']) }}
<div class="form-group">
{{ Form::label('name', __('referral_hospitals.hospital_name')) }}
{{ Form::text('name', $referral_hospital->name, ['class' => 'form-control compulsory','required']) }}
<div class="help-block with-errors"></div>
</div>
{{ 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() }}
</div>
</div>
</div>
@endsection
@push('scripts')
<script src="{{ asset('elite/js/validator.js') }}"></script>
@endpush