bug fixes, AM change feature, refactoring

This commit is contained in:
Kwesi Banson Jnr
2025-11-23 14:40:32 +00:00
parent eabf61b7da
commit d5ac7391dd
41 changed files with 1559 additions and 125 deletions

View File

@@ -0,0 +1,77 @@
@extends('layouts.master')
@section('page_title')
@if(isset($page_title))
{{ $page_title }}
@endif
@endsection
@section('content')
<div class="">
<div class="page-title">
<div class="title_left" style="width:800px !important;">
<ol class="breadcrumb">
<li><a href="{!! url('dashboard') !!}">Dashboard</a></li>
<li class="active"><a href="{!! url('supporttickets/list') !!}">Ticket List</a></li>
<li class="active">New Ticket</li>
</ol>
</div>
</div>
<div class="clearfix"></div>
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="x_panel">
<div class="x_title">
@include('commons.notifications')
<div class="clearfix"></div>
</div>
{{-- start of content --}}
<div class="x_content">
<br>
{!! Form::open(['url' => 'supporttickets', 'class' => 'form-horizontal form-label-left']) !!}
<div class="form-group">
<label class="control-label col-md-3 col-sm-3 col-xs-12" for="name">Subject</label>
<div class="col-md-6 col-sm-6 col-xs-12 {{ $errors->has('subject') ? 'has-error' : ''}}">
{!! Form::text('subject', old('subject'), ['class' => 'form-control col-md-7 col-xs-12', 'placeholder'=>'Enter subject' , 'id' => 'subject']) !!}
{!! $errors->first('subject', '<p class="help-block">:message</p>') !!}
</div>
</div>
<div class="form-group">
<label class="control-label col-md-3 col-sm-3 col-xs-12" for="type">Body</label>
<div class="col-md-6 col-sm-6 col-xs-12 {{ $errors->has('body') ? 'has-error' : ''}}">
{!! Form::textarea('body', old('body'), ['class' => 'form-control col-md-7 col-xs-12', 'placeholder'=>'Enter body ' , 'id' => 'body']) !!}
{!! $errors->first('body', '<p class="help-block">:message</p>') !!}
</div>
</div>
<div class="form-group">
<label class="control-label col-md-3 col-sm-3 col-xs-12" for="type">Attachment</label>
<div class="col-md-6 col-sm-6 col-xs-12 {{ $errors->has('body') ? 'has-error' : ''}}">
{!! Form::file('attachment', null, ['class' => 'form-control' , 'id' => 'attachment']) !!}
{!! $errors->first('attachment', '<p class="help-block">:message</p>') !!}
</div>
</div>
<div class="ln_solid"></div>
<div class="form-group">
<div class="col-md-6 col-sm-6 col-xs-12 col-md-offset-3">
<button type="submit" class="btn btn-success btn-block"><i class="fa fa-save"></i> Submit</button>
</div>
</div>
{!! Form::close() !!}
</div>
{{-- end of x_content --}}
</div>
{{-- end of x_panel --}}
</div>
</div>
</div>
@endsection
@section('javascript')
<script type="text/javascript">
$(function(){
$('select').select2();
});
</script>
@endsection