@extends('themes.default1.admin.layout.admin') @section('Tickets') active @stop @section('manage-bar') active @stop @section('labels') class="active" @stop @section('HeadInclude') @stop @section('PageHeader')

Labels

@stop @section('breadcrumbs') @stop @section('content') @if(Session::has('success'))
{{Session::get('success')}}
@endif @if(Session::has('fails'))
{{Session::get('fails')}}
@endif @if(Session::has('errors'))

{!! Lang::get('lang.alert') !!}!
@if($errors->first('title'))
  • {!! $errors->first('title', ':message') !!}
  • @endif @if($errors->first('color'))
  • {!! $errors->first('color', ':message') !!}
  • @endif @if($errors->first('order'))
  • {!! $errors->first('order', ':message') !!}
  • @endif
    @endif @if(Session::has('warn'))
    {{Session::get('warn')}}
    @endif
    New Label
    {!! Form::open(['url'=>'labels','method'=>'post', 'id' => 'label-form']) !!}
    {!! Form::label('title','Title') !!} *
    {!! Form::text('title',null,['class'=>'form-control']) !!}
    {!! Form::label('color','Color') !!} *
    {!! Form::text('color', null,['class'=>'form-control my-colorpicker1 colorpicker-element']) !!}
    {!! Form::label('order','Order') !!} *
    {!! Form::input('number', 'order', null, array('class' => 'form-control')) !!}
    {!! Form::label('status','Status') !!}   {{Lang::get('lang.enable')}}
    @stop @section('FooterInclude') @stop