@extends($ajaxCall) @section('content') @include('general.tab-header', ['departmentName' => 'Error Handling', 'moduleName' => "Report an Error"])
{!! Form::open(['method' => 'POST', 'files'=>true, 'url' => url('error/user-report'), 'class' => 'form-horizontal']) !!}
Error Type
{!! Form::select('type', $types, \request("type"), ['class'=>'multiselect_search', 'id'=>'type']) !!}
Summary
{!! Form::text('summary', \request("summary"), ['class'=>'form-control', 'rows' => 10, 'id' => 'summary']) !!}
Notes
{!! Form::textarea('notes', \request("notes"), ['class'=>'form-control', 'rows' => 10, 'id' => 'notes']) !!}
Screenshot
{!! Form::file("file", ['name' => "file"]) !!}
{!! Form::submit("Submit", ['name' => "submit", 'class' => "btn btn-primary"]) !!}
{!! Form::close() !!}
@endsection {{-- JS scripts section --}} @section("js_scripts") @stop