@extends('layouts.app') @section("script") @section('content') @include('levelGroup.header')
Create New Level Group
{!! 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') !!}
picture {!! Form::text('image', null, ['id' => 'image', 'class' => 'validate', 'required']) !!} {!! Form::label('image', 'Level Group Image') !!}
Select photo
{!! 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('Submitsend', ['type' => 'submit', 'class' => 'btn']); !!} {!! Form::close() !!}
@endsection @section('scripts')