@extends('layouts.app') @section('css') @section('content') @include('story.header') Create New Story {!! Form::open(['route' => 'story.store', 'class' => 'col s12', 'files' => true]) !!} {!! Form::token() !!} bookName {!! Form::text('story_name', null, ['id' => 'story_name']) !!} {!! Form::label('story_name', 'Story Name') !!} bookCourse/LevelGroup/Level {!! Form::select('courses', $courses, null, ['id' => 'courses']); !!} {!! Form::label('courses', 'Select Course') !!} {!! Form::label('levelGroup', 'Level Groups') !!} {!! Form::label('levels', 'Levels') !!} faceCharacters add Add Characters imageBackground picture Select photo picture Select photo insert_commentScene Scene 0close Loop OffLoop On addAdd Shot {{-- add Add Scene --}} {!! Form::button('Submitsend', ['type' => 'submit', 'class' => 'btn']); !!} {!! Form::close() !!} @endsection
Scene 0