@extends('layouts.scaffold')
@section('title')
Edit Technology|Golars Networks
@stop
@section('main')
{{ Form::model($technology, array('method' => 'PATCH', 'route' => array('technologies.update', $technology->id), 'id' => 'editTechnologies')) }}
-
{{ Form::label('name', 'Name:') }}
{{ Form::text('name') }}
-
{{ Form::label('description', 'Description:') }}
{{ Form::textarea('description',null,array('class' => 'ckeditor')) }}
-
{{ Form::submit('Update', array('class' => 'btn btn-info')) }}
{{ link_to_route('technologies.index', 'Cancel', null, array('class' => 'btn btn-info')) }}
{{ Form::close() }}
@if ($scripts = 'js/technologies/edit_technologies.js') @endif
@stop