{!! Lang::get('lang.submit_a_ticket') !!}
@if (Auth::user())
{!! Form::hidden('Name', Auth::user()->user_name) !!}
{!! Form::hidden('Email', Auth::user()->email) !!}
{!! Form::hidden('mobile', Auth::user()->mobile) !!}
{!! Form::hidden('Code', Auth::user()->country_code) !!}
{!! Form::hidden('Phone', Auth::user()->phone_number) !!}
@else
{!! Lang::get('lang.max') !!}. {!! $max_size_in_actual !!}
{{-- Event fire --}}
{!! Form::label('Name', Lang::get('lang.name')) !!} *
{!! Form::text('Name', null, ['class' => 'form-control']) !!}
{!! Form::label('Email', Lang::get('lang.email')) !!}
@if ($email_mandatory->status == 1)
*
@endif
{!! Form::email('Email', null, ['class' => 'form-control']) !!}
{!! Form::label('Code', Lang::get('lang.country-code')) !!}
{!! Form::text('Code', null, [
'class' => 'form-control',
'placeholder' => $phonecode,
'title' => Lang::get('lang.enter-country-phone-code'),
]) !!}
{!! Form::label('mobile', Lang::get('lang.mobile_number')) !!}
{!! Form::text('mobile', null, ['class' => 'form-control']) !!}
{!! Form::label('Phone', Lang::get('lang.phone')) !!}
{!! Form::text('Phone', null, ['class' => 'form-control']) !!}
@endif
get(); ?>
get(); ?>
{!! Form::select('priority', $Priority->pluck('priority_desc', 'priority_id')->toArray(), null, [
'class' => 'form-control',
]) !!}
{!! Form::label('Subject', Lang::get('lang.subject')) !!} *
{!! Form::text('Subject', null, ['class' => 'form-control']) !!}
{!! Form::label('Details', Lang::get('lang.message')) !!} *
{!! Form::textarea('Details', null, ['class' => 'form-control']) !!}
{!! Lang::get('lang.max') !!}. {!! $max_size_in_actual !!}
{!! Form::button(' ' . Lang::get('lang.submit'), [
'type' => 'submit',
'class' => 'btn btn-primary',
]) !!}
{!! Lang::get('lang.have_a_ticket') !!}?
@if (Session::has('check')) @if (count($errors) > 0)