@section('content') @section('scripts') {{ HTML::script('js/jquery.synctranslit.js') }} @stop

Overview Categories>{{ $title }}

{{ $title }}

@if($errors->has())
@foreach ($errors->all() as $row)
{{ $row }}
@endforeach
@endif {{ Form::model($category, $method) }}
{{ Form::text('title', null, array('id' => 'input-title', 'placeholder' => 'Title', 'required' => 'true', 'class' => 'form-control')) }}
{{ Form::text('alias', null, array('id' => 'alias', 'placeholder' => 'Alias', 'required' => 'true', 'class' => 'form-control')) }}
{{ Form::text('position', null, array('id' => 'position', 'placeholder' => 'Position', 'class' => 'form-control')) }}
{{ Form::select('is_active', array('1' => 'Yes', '0' => 'No'), null, array('id' => 'input-is_active', 'class' => 'form-control')) }}
Cancel
{{ Form::close() }} @endsection