@extends('themes.default1.client.layout.client') @section('title') Submit A Ticket - @stop @section('submit') class = "active" @stop @section('breadcrumb')
@stop @section('check') @stop @section('content')
@if(Session::has('message'))
Success! {{Session::get('message')}}
@endif {{-- --}} encrypt(csrf_token()); ?> {!! Form::open(['action'=>'Client\helpdesk\FormController@postedForm','method'=>'post']) !!}

{!! Lang::get('lang.ticket') !!} {!! Form::submit(Lang::get('lang.send'),['class'=>'form-group btn btn-info pull-right'])!!}

{!! Form::label('help_topic', Lang::get('lang.choose_a_help_topic')) !!} {!! $errors->first('help_topic', ':message') !!}
{!! Form::label('Name',Lang::get('lang.name')) !!} {!! $errors->first('Name', ':message') !!} {!! Form::text('Name',null,['class' => 'form-control']) !!}
{!! Form::label('Email',Lang::get('lang.email')) !!} {!! $errors->first('Email', ':message') !!} {!! Form::text('Email',null,['class' => 'form-control']) !!}
{!! Form::label('Phone',Lang::get('lang.phone')) !!} {!! $errors->first('Phone', ':message') !!} {!! Form::text('Phone',null,['class' => 'form-control']) !!}
{!! Form::label('Subject',Lang::get('lang.subject')) !!} {!! $errors->first('Subject', ':message') !!} {!! Form::text('Subject',null,['class' => 'form-control']) !!}
{!! Form::label('Details',Lang::get('lang.message')) !!} {!! $errors->first('Details', ':message') !!} {!! Form::textarea('Details',null,['class' => 'form-control']) !!}
{{-- Event fire --}}
{!! Form::close() !!}
@stop