@extends('layouts.main') @section('content') @if($option == "View") @endif {!! Form::model($action, ['url' => 'action_settings/save', 'class' => 'form-horizontal', 'autocomplete' => 'off', 'id' => 'groupForm']) !!} @if(Session::has('unauthorize')) × {{ Session::get('unauthorize') }} @endif @if(Session::has('update')) × {{ Session::get('update') }} @endif @if(Session::has('success')) × {{ Session::get('success') }} @endif Actions | {{ $option }} Action Details {!! Form::hidden('id', $id) !!} Action: * {!! Form::text('a_action', null, ['class' => 'form-control input-sm align-form', 'data-validation' => 'required', 'data-validation-error-msg-container' => '#a_action', $option == 'View' ? 'readonly' : '']) !!} {{ $errors->first('a_action') }} Number Arrangement: * {!! Form::text('a_number', null, ['class' => 'form-control input-sm align-form', 'data-validation' => 'required', 'data-validation-error-msg-container' => '#a_number', $option == 'View' ? 'readonly' : '']) !!} {{ $errors->first('a_number') }} {!! Form::button(' Save', ['class' => 'btn btn-primary btn-sm', 'type' => 'submit']) !!} Cancel {!! Form::close() !!} @stop