help desk create view

This commit is contained in:
merdan 2020-05-01 17:01:52 +05:00
parent aebdf4aba9
commit 4ea1d6b081
1 changed files with 6 additions and 1 deletions

View File

@ -28,7 +28,7 @@
</div>
<div class="form-group hidden">
{!! Form::label('subject', trans("ClientSide.subject"), array('class'=>'control-label')) !!}
{!! Form::text('subject', old('subject','Other'),array('class'=>'form-control' )) !!}
{!! Form::text('subject', old('subject',trans('ClientSide.other')),array('class'=>'form-control' )) !!}
</div>
<div class="form-group custom-theme">
{!! Form::label('text', trans("ClientSide.text"), array('class'=>'control-label required')) !!}
@ -50,6 +50,11 @@
</section>
@endsection
@section('after_scripts')
<script>
$('select[name="topic"]').on('change', function() {
$('input[name="topic"]').val(this.value);
});
</script>
@endsection