@extends('admin/layouts/default') {{-- Page title --}} @section('title') Create New status @parent @stop {{-- Page content --}} @section('content')

Statuses

Create a new status

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::open(['url' => 'admin/statuses']) !!}
{!! Form::label('code', 'Code: ') !!} {!! Form::text('code', null, ['class' => 'form-control']) !!}
{!! Form::label('name', 'Name: ') !!} {!! Form::text('name', null, ['class' => 'form-control']) !!}
{!! Form::label('type', 'Type: ') !!} {!! Form::text('type', null, ['class' => 'form-control']) !!}
@lang('button.cancel')
{!! Form::close() !!}
@stop