@extends('layouts.app') @section('content')
@if ($errors->any())
×
@endif @if (Session::has('message'))
× {{ Session::get('message') }}
@endif

Build Worksheet

{{ Form::model($worksheet, array('action' => array('WorksheetsController@update', $worksheet->id), 'method' => 'PUT')) }}
{{ Form::label('name', 'WorkSheet Title:') }} {{ Form::text('name', old('name'), array('class' => 'form-control')) }}
{{ Form::label('menu_name', 'Menu Name:') }} {{ Form::text('menu_name', old('menu_name'), array('class' => 'form-control')) }}
{{ Form::label('description', 'Description:') }} {{ Form::textarea('description', null, array('id' => 'summernote', 'class' => 'editordata form-control')) }}
{{ Form::label('media_script', 'Media Script:') }} {{ Form::text('media_script', old('media_script'), array('class' => 'form-control')) }}
{{ Form::label('module_id', 'Select Module *' ) }} {{ Form::select('module_id', $module_list, null, array('class' => 'form-control col-xs-12', 'placeholder'=>'Choose a Module')) }}
{{ Form::label('question_box', 'Add question box?' ) }} question_box === 1 ? "checked" : "" }}>
Cancel
{{ Form::close() }}
@endsection @section('scripts') @stop