@extends('tickets.layout',['user'=>$user]) @section('tickets')

Nouveau ticket

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