@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') !!}
{{ Form::select('statuslabel_types', $statuslabel_types, $statuslabel->getStatuslabelType(), array('class'=>'select2', 'style'=>'min-width:400px')) }} {!! $errors->first('statuslabel_types', ' :message') !!}
{{ Form::label('color', trans('admin/statuslabels/table.color'), ['class' => 'col-md-3 control-label']) }}
{{ Form::text('color', Input::old('color', $statuslabel->color), array('class' => 'form-control', 'style' => 'width: 100px;', 'maxlength'=>'10')) }}
{!! $errors->first('header_color', ':message') !!}
{!! $errors->first('notes', ' :message') !!}

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

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

@section('moar_scripts') @stop @stop