@extends('layouts.client_template') @section('content')
@foreach (['danger', 'warning', 'success', 'info'] as $msg) @if(Session::has('alert-' . $msg)) @endif @endforeach

Create New Ticket

{{ csrf_field() }}
@if ($errors->has('category')) {{ $errors->first('category') }} @endif
@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('priority')) {{ $errors->first('priority') }} @endif
@if ($errors->has('message')) {{ $errors->first('message') }} @endif
@endsection