@extends('layouts.master') @section('navigation') @include('local.managers.admins._navigation') @stop @section('main')
Create new activity
{{ Form::open(array('action' => 'CoursesController@update')) }}
{{ Form::label('activity_type', 'Activity Type') }} {{-- {{ Form::text('activity_type', Input::old('activity_Type'), array('class' => 'form-control', 'placeholder'=>'TEST', 'maxLength'=>5)) }}--}}
{{ Form::label('instrument', 'Instrument') }} {{-- {{ Form::text('instrument', Input::old('instrument'), array('class' => 'form-control', 'placeholder'=>'TEST', 'maxLength'=>5)) }}--}}
{{ Form::label('outcome', 'Learning Outcome') }}
{{ Form::label('objective', 'Learning Objective') }}
{{ Form::label('transforming_action', 'Transforming Actions') }}

{{ Form::submit('Submit', array('class' => 'btn btn-primary btn-block', 'name'=>'create_activity')) }} {{ Form::close() }}
@if(Session::has('courses'))

The following courses were updated:

    @foreach(json_decode(Session::get('courses')) as $course)
  • @if(Session::has('show_sections')) {{ $course->code }}{{ $course->number }}-{{ $course->section }} @else {{ $course->code }}{{ $course->number }} @endif
  • @endforeach
@endif
@stop @section('javascript') // -------------------------------------------------------------------------- // Page load // -------------------------------------------------------------------------- // -------------------------------------------------------------------------- // Functions // -------------------------------------------------------------------------- // -------------------------------------------------------------------------- // Events // -------------------------------------------------------------------------- @stop