@extends('layouts.scaffold')
@section('title')
Add Technology|Golars Networks
@stop
@section('main')
@if ($errors->any())
{{ implode('', $errors->all('- :message
')) }}
@endif
{{ Form::open(array('route' => 'technologies.store', 'id' => 'createTechnologies')) }}
-
{{ Form::label('name', 'Name:') }}
{{ Form::text('name') }}
-
{{ Form::label('description', 'Description:') }}
{{ Form::textarea('description',null,array('class' => 'ckeditor')) }}
-
{{ Form::submit('Submit', array('class' => 'btn btn-info')) }}
{{ link_to_route('technologies.index', 'Cancel', null, array('class' => 'btn btn-info')) }}
{{ Form::close() }}
@if ($scripts = 'js/technologies/create_technologies.js') @endif
@stop