{!! Form::open(['route' => 'levelGroup.store', 'class' => 'col s12', 'files' => true]) !!} {!! Form::token() !!} {{ csrf_field()
}}
book {!! Form::text('name', null, ['id' => 'name', 'class' => 'validate',
'required']) !!} {!! Form::label('name', 'Name') !!}
{!! Form::select('courseId', $courses, null, ['id' => 'courseId']); !!} {!! Form::label('courseId', 'Course') !!}
blur_on {!! Form::number('order', null, ['id' => 'order', 'step' =>
'1']) !!} {!! Form::label('order', 'Order') !!}
Tips
{!! Form::textarea('tips', null, ['id' => 'tips', 'class' => 'materialize-textarea']) !!}
{!! Form::textarea('description', null, ['id' => 'description', 'class' => 'materialize-textarea']) !!}
{!! Form::button('Submit
send', ['type' => 'submit', 'class' => 'btn']);
!!} {!! Form::close() !!}