@extends('layouts.app') @section('css') @section('content') @include('story.header')
Story Details
  • bookName
    {!! Form::text('story_name',isset($story->name) ? $story->name :"Not Set", ['id' => 'story_name','readonly'=>'true']) !!} {!! Form::label('story_name', 'Story Name') !!}
  • bookCourse/LevelGroup/Level
    {{-- {!! Form::select('courses', $courses, $selectedCourseId, ['id' => 'courses']); !!} {!! Form::label('courses', 'Select Course') !!} --}}
    {{-- {!! Form::select('levelGroup', $levelGroups, $selectedLevelGroupId, ['id' => 'levelGroup']); !!} {!! Form::label('levelGroup', 'Level Groups') !!} --}}
    {{-- {!! Form::select('levels', $levels, $selectedLevelId, ['id' => 'levels']); !!} {!! Form::label('levels', 'Levels') !!} --}}
  • faceCharacters
    @foreach($characters as $name=>$image)
    {{-- --}}
    {{-- --}}
    @endforeach
  • imageBackground
  • insert_commentScene
    @foreach($story->scene as $index=>$scene)

    Scene {{ $index }}

    @endforeach
@endsection