@extends('layouts.help') @push('styles') @endpush @section('content')
← Back to Tickets
Submit a Support Ticket
@if ($errors->any())
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::open(array('route' => 'front.support.tickets.store', 'method'=>'POST', 'files' => true, 'id' => 'myForm')) !!} @include('frontend.support.partials.form', ['ticket' => null])
{!! Form::close() !!}
@endsection