@extends('layouts.master') @section('page_title') @if(isset($page_title)) {{ $page_title }} @endif @endsection @section('content')
@include('commons.notifications')
{{-- start of content --}}

{!! Form::open(['url' => 'supporttickets', 'class' => 'form-horizontal form-label-left']) !!}
{!! Form::text('subject', old('subject'), ['class' => 'form-control col-md-7 col-xs-12', 'placeholder'=>'Enter subject' , 'id' => 'subject']) !!} {!! $errors->first('subject', '

:message

') !!}
{!! Form::textarea('body', old('body'), ['class' => 'form-control col-md-7 col-xs-12', 'placeholder'=>'Enter body ' , 'id' => 'body']) !!} {!! $errors->first('body', '

:message

') !!}
{!! Form::file('attachment', null, ['class' => 'form-control' , 'id' => 'attachment']) !!} {!! $errors->first('attachment', '

:message

') !!}
{!! Form::close() !!}
{{-- end of x_content --}}
{{-- end of x_panel --}}
@endsection @section('javascript') @endsection