{{ Form::open(array('action' => 'TransformativeActionsController@updateTA')) }}
{{ Form::label('text', 'Name') }}
{{ Form::text('text', '', array('class' => 'form-control')) }}
{{ Form::label('description', 'Description') }}
{{ Form::textarea('description', '', array('class' => 'form-control')) }}
{{--
@foreach($types as $type)
@endforeach
{{ Form::submit('Update', array('class' => 'btn btn-primary btn-block')) }}
{{ Form::close() }}
{{ Form::open(array('action' => 'TransformativeActionsController@deleteTA')) }}
{{Form::submit("Delete", array('class'=> 'btn btn-primary btn-block', 'id'=>"DeleteButton"))}}