@extends('admin.layout') @section('content')

{{ trans('Create Tickets') }}

@php $getUserRoleData = userRoleData(); $Tickets = explode(",",$getUserRoleData->Tickets); @endphp
@if(in_array("View",$Tickets))
    @if(in_array("View",$Tickets))
  • Cancel
  • @endif
@endif
@if(session()->has('message'))

{{ trans('labels.Successlabel') }}

{{ session()->get('message') }}
@endif @if(session()->has('error'))

{{ trans('labels.WarningLabel') }}

{{ session()->get('error') }}
@endif
@if(in_array("Add",$Tickets )) {!! Form::open(array('url' =>'admin/create-tickets-data', 'method'=>'post', 'class' => 'form-horizontal', 'id' => 'createTicketsData', 'enctype'=>'multipart/form-data')) !!}
Tickets Information
@if (\Session::has('err_msg'))
{!! \Session::get('err_msg') !!}
@endif



Optional Information
{!! Form::text('subject', '', array('class'=>'form-control', 'id'=>'subject', 'required'=>'required')) !!}
{!! Form::textarea('work_logs', '', array('class'=>'form-control work_logs', 'id'=>'work_logs', 'rows'=>'3')) !!}
{!! Form::textarea('description', '', array('class'=>'form-control', 'id'=>'description', 'rows'=>'3')) !!}
{!! Form::textarea('resolution', '', array('class'=>'form-control', 'id'=>'resolution', 'rows'=>'3')) !!}
{!! Form::close() !!} @else

Please contact with SuperAdmin

@endif
@endsection