Open New Ticket

{{ Form::open(['files' => 'true', 'route' => 'tickets']) }}
{{ Form::label('title', 'Title:') }} {{ Form::text('title', null, ['class' => 'form-control']) }}
@if($user->isAdmin())
{{ Form::label('client', 'Client:') }}
{{ Form::label('status', 'Status:') }}
@endif
{{ Form::textarea('content', null, ['class'=>'form-control', 'placeholder' => 'Write something here', 'style' => 'height:120px' ]) }}
{{ Form::close() }}