diff --git a/resources/views/desktop/Pages/HelpDeskCreateForm.blade.php b/resources/views/desktop/Pages/HelpDeskCreateForm.blade.php index 7019de9c..00b36a3a 100644 --- a/resources/views/desktop/Pages/HelpDeskCreateForm.blade.php +++ b/resources/views/desktop/Pages/HelpDeskCreateForm.blade.php @@ -23,7 +23,7 @@
@csrf -
+
{!! Form::label('name', trans("ClientSide.name"), array('class'=>'control-label')) !!} {!! Form::text('name', old('name'),array('class'=>'form-control' )) !!}
@@ -34,12 +34,12 @@

{{ $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')) @@ -50,7 +50,14 @@ {!! 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('attachment', trans("ClientSide.attachment"), array('class'=>'control-label')) !!} + {!! Form::file('attachment') !!} + @if($errors->has('attachment')) +

{{ $errors->first('attachment') }}

+ @endif +
+
{!! Form::label('text', trans("ClientSide.message"), array('class'=>'control-label required')) !!} {!! Form::textarea('text', old('text'), array( @@ -61,13 +68,6 @@

{{ $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"]) !!}