@extends('layouts.admin') @section('title', trans('general.title.new', ['type' => trans_choice('general.categories', 1)])) @section('content')
{!! Form::open(['url' => 'settings/categories', 'role' => 'form']) !!}
{{ Form::textGroup('name', trans('general.name'), 'id-card-o') }} {{ Form::selectGroup('type', trans_choice('general.types', 1), 'bars', $types, config('general.types')) }}
{!! Form::label('color', trans('general.color'), ['class' => 'control-label']) !!}
{!! Form::text('color', '#00a65a', ['id' => 'color', 'class' => 'form-control', 'required' => 'required']) !!}
{!! $errors->first('color', '

:message

') !!}
{{ Form::radioGroup('enabled', trans('general.enabled')) }}
{!! Form::close() !!}
@endsection @push('js') @endpush @push('css') @endpush @push('scripts') @endpush