@extends('layouts.default') @section('content')

Module Management

Update Module
{!! Form::model($target, array('route' => array('module.update', $target->id), 'method' => 'PUT', 'class' => 'form-horizontal', 'id' => 'userId')) !!}
{!! Form::text('name', old('name'), array('id'=> 'name', 'class' => 'form-control', 'required' => 'true')) !!} {!! $errors->first('name') !!}
{!! Form::textarea('description', old('description'), array('id'=> 'description', 'rows' => '3', 'class' => 'form-control')) !!}
@foreach($activities as $activity) activity_id==$activity->id) checked @endif @endforeach >
@endforeach
{!! Form::close() !!}
@stop