@extends('layouts.master') @section('styles') @endsection @section('content')
{{ Form::open(['url' => route('lessons.store')]) }} {{ Form::hidden('course_id', $course->id) }}

@lang('lesson/fields.courses')

@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('content')) {{ $errors->first('content') }} @endif
{{ Form::close() }}
@endsection @section('scripts') @endsection