@extends('admin.layouts.layout') @section('content')

{{ trans('admin_lang.add') }} Report Reason

{{ Form::open(['route' => [routeFormUser($pagePath . '.store')], 'files' => true, 'class' => 'upload_submit']) }}
{!! Form::select('type', $types, null,['class' => 'form-control', 'placeholder' => 'Select type', 'required']) !!} @if ($errors->has('type')) {{ $errors->first('type') }} @endif
{!! Form::text('reason', null, ['class' => 'form-control', 'placeholder' => 'Enter Reason', 'required']) !!} @if ($errors->has('reason')) {{ $errors->first('reason') }} @endif
{{ Form::close() }}
@endsection