mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-11 18:51:31 +00:00
101 lines
4.5 KiB
PHP
Executable File
101 lines
4.5 KiB
PHP
Executable File
@extends('layouts.main')
|
|
|
|
@push('styles')
|
|
<link href="{{ asset('/elite/bower_components/datatables/jquery.dataTables.min.css') }}" rel="stylesheet" type="text/css" />
|
|
<link href="{{ asset('elite/tables/css/buttons.dataTables.min.css') }}" rel="stylesheet" type="text/css" />
|
|
<link href="{{ asset('elite/bower_components/bootstrap-datepicker/bootstrap-datepicker.min.css') }}" rel="stylesheet" type="text/css" />
|
|
@endpush
|
|
|
|
@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">{{ __('frequently_asked_questions.faq') }}</h4>
|
|
</div>
|
|
<div class="col-lg-9 col-sm-8 col-md-8 col-xs-12">
|
|
<ol class="breadcrumb">
|
|
<li><a href="{{ route('home') }}">{{ __('frequently_asked_questions.dashboard') }}</a></li>
|
|
<li><a href="{{ route('frequently_asked_questions.index') }}">{{ __('frequently_asked_questions.faq') }}</a></li>
|
|
<li class="active">{{ __('frequently_asked_questions.add_faq') }}</li>
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
|
|
@include('frequently_asked_questions.menu')
|
|
|
|
@include('flash::message')
|
|
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<div class="white-box">
|
|
{{ Form::open(['route' => 'frequently_asked_questions.store','data-toggle'=>'validator']) }}
|
|
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="form-group">
|
|
{{ Form::label('question', __('frequently_asked_questions.question')) }}
|
|
{{ Form::text('question', '', ['class'=>'form-control compulsory','required']) }}
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
{{ Form::label('module_id', __('frequently_asked_questions.modules')) }}
|
|
{{ Form::select('module_id', $modules, '', ['class'=>'form-control', 'id'=>'module_id']) }}
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
{{ Form::label('answer', __('frequently_asked_questions.answer')) }}
|
|
{{ Form::textarea('answer', '', ['class'=>'form-control']) }}
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
{{ Form::label('reference_url', 'Primary Reference URL') }}
|
|
{{ Form::text('reference_url', '', ['class'=>'form-control', 'id'=>'reference_url']) }}
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
{{ Form::label('additional_reference_url', 'Secondary Reference URL') }}
|
|
{{ Form::text('additional_reference_url', '', ['class'=>'form-control', 'id'=>'additional_reference_url']) }}
|
|
</div>
|
|
|
|
{{ Form::button('Submit',['type'=>'submit','class'=>'btn btn-success waves-effect waves-light m-r-10']) }}
|
|
{{ Form::button('Cancel',['type'=>'reset','class'=>'btn btn-default waves-effect waves-light']) }}
|
|
</div>
|
|
</div>
|
|
{{ Form::close() }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|
|
|
|
@push('scripts')
|
|
|
|
<script src="{{ asset('elite/bower_components/datatables/jquery.dataTables.min.js') }}"></script>
|
|
|
|
<script src="{{ asset('elite/tables/js/dataTables.buttons.min.js') }}"></script>
|
|
<script src="{{ asset('elite/tables/js/buttons.flash.min.js') }}"></script>
|
|
<script src="{{ asset('elite/tables/js/jszip.min.js') }}"></script>
|
|
<script src="{{ asset('elite/tables/js/pdfmake.min.js') }}"></script>
|
|
<script src="{{ asset('elite/tables/js/vfs_fonts.js') }}"></script>
|
|
<script src="{{ asset('elite/tables/js/buttons.html5.min.js') }}"></script>
|
|
<script src="{{ asset('elite/tables/js/buttons.print.min.js') }}"></script>
|
|
|
|
<!-- data time piker dependency -->
|
|
<script src="{{ asset('elite/bower_components/bootstrap-datepicker/bootstrap-datepicker.min.js') }}"></script>
|
|
<!-- -->
|
|
|
|
<script>
|
|
$('.table').DataTable({
|
|
dom: 'Bfrtip',
|
|
buttons: [
|
|
'copy', 'csv', 'excel', 'pdf', 'print'
|
|
]
|
|
});
|
|
|
|
$('#datepicker-autoclose,#datepicker-autoclose2').datepicker({
|
|
autoclose: true,
|
|
todayHighlight: true,
|
|
format: 'dd/mm/yyyy',
|
|
setDate: new Date(),
|
|
readOnly: true
|
|
});
|
|
</script>
|
|
@endpush |