@extends('layouts.app') @section('content')
Choreographies
{!! Form::open(['url' => Request::url(), 'method'=>'post', 'class'=>'form-horizontal']) !!}
{!! Form::select('style_id', App\Style::getSelectArray(), null, ['class'=>'form-control', 'autofocus' => 'autofocus']) !!} @if ($errors->has('style_id')) {{ $errors->first('style_id') }} @endif
{!! Form::select('level_id', App\Level::getSelectArray(), null, ['class'=>'form-control', 'autofocus' => 'autofocus', 'data-max'=> '0']) !!} @if ($errors->has('level_id')) {{ $errors->first('level_id') }} @endif
{!! Form::select('category_id', App\Category::getSelectArray(), null, ['class'=>'form-control', 'autofocus' => 'autofocus', 'data-max'=> '0']) !!} @if ($errors->has('category_id')) {{ $errors->first('category_id') }} @endif
{!! Form::text('name', null, ['class'=>'form-control', 'autofocus' => 'autofocus']) !!} @if ($errors->has('name')) {{ $errors->first('name') }} @endif
{!! Form::close() !!}
@endsection