@extends('layouts/default') {{-- Page title --}} @section('title') @if ($statuslabel->id) {{ trans('admin/statuslabels/table.update') }} @else {{ trans('admin/statuslabels/table.create') }} @endif @parent @stop @section('header_right') {{ trans('general.back') }} @stop {{-- Page content --}} @section('content')
{!! $errors->first('name', ' :message') !!}
{!! $errors->first('notes', ' :message') !!}
{{ Form::select('statuslabel_types', $statuslabel_types, $statuslabel->getStatuslabelType(), array('class'=>'select2', 'style'=>'min-width:400px')) }} {!! $errors->first('statuslabel_types', ' :message') !!}
{{ trans('admin/statuslabels/table.about') }}

{{ trans('admin/statuslabels/table.info') }}

@stop