@extends('layouts.adminLayout.admin_design') @section('content')

{{ $title }}

{{ $title }}

{{ Form::open(['url' => route('voidreason.store'), 'method'=>'POST', 'name' => 'voidreason', 'id' => 'voidreason']) }}
{{ Form::label(__('lbl.void_message')) }} {{ Form::text('message', old('message'), ["class"=>"form-control","placeholder"=>"","id"=>"message","name"=>"message"]) }} @if ($errors->has('message')) {{ $errors->first('message') }} @endif
{{ Form::button(' '.__('lbl.submit'),["type"=>"submit","name"=>"submit","value"=>"submit","class"=>"clickbtncommon btn-sm btn btn-primary ".$add_edit_allowed.""]) }} {{ __('lbl.back') }}
{{ Form::close() }}
@endsection @section('pagescript') {!! Helper::pagejs(['js/backend/voidreason/add_edit.js']) !!} @stop