@extends('Shared.Layouts.BilettmLayout',['folder' => 'desktop']) @section('content') {{\DaveJamesMiller\Breadcrumbs\Facades\Breadcrumbs::render('help')}} @lang('ClientSide.support') {!! Form::input('code', null, array(['class'=>'form-control'])) !!}} @lang('ClientSide.support_form_text') @csrf {!! Form::label('name', trans("ClientSide.name"), array('class'=>'control-label')) !!} {!! Form::text('name', old('name'),array('class'=>'form-control' )) !!} {!! Form::label('email', trans("ClientSide.email"), array('class'=>'control-label required')) !!} {!! Form::text('email', old('email'),array('class'=>'form-control' )) !!} @if($errors->has('email')) {{ $errors->first('email') }} @endif {!! Form::label('phone', trans("ClientSide.phone"), array('class'=>'control-label')) !!} {!! Form::text('phone', old('phone'),array('class'=>'form-control' )) !!} {!! Form::label('topic', trans("ClientSide.support_topic"), array('class'=>'control-label')) !!} {!! Form::select('topic',help_topics(), old('topic'), ['placeholder'=>trans('ClientSide.please_select'),'class' => 'form-control','id'=>'topic']) !!} @if($errors->has('topic')) {{ $errors->first('topic') }} @endif {!! Form::label('subject', trans("ClientSide.support_subject"), array('class'=>'control-label')) !!} {!! Form::text('subject', old('subject',trans('ClientSide.other')),array('class'=>'form-control' )) !!} {!! Form::label('text', trans("ClientSide.message"), array('class'=>'control-label required')) !!} {!! Form::textarea('text', old('text'), array( 'class'=>'form-control editable', 'rows' => 5 )) !!} @if($errors->has('text')) {{ $errors->first('text') }} @endif {!! Form::label('attachment', trans("ClientSide.attachment"), array('class'=>'control-label')) !!} {!! Form::file('attachment') !!} @if($errors->has('attachment')) {{ $errors->first('attachment') }} @endif {!! Form::submit(trans("ClientSide.submit_ticket"), ['class'=>"btn btn-success"]) !!} @endsection @section('after_scripts') @endsection
@lang('ClientSide.support_form_text')
{{ $errors->first('email') }}
{{ $errors->first('topic') }}
{{ $errors->first('text') }}
{{ $errors->first('attachment') }}