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

{{ trans('labels.entity') }}

{{ Form::open(array('url' => 'entity/create')) }}
{{ trans('labels.entity') }} :
{{ Form::select('parent_id', $entity_options, Input::old('parent_id')) }}
{{ trans('labels.label') }} :
{{ Form::text('entity_name', Input::old('entity_name')) }}
{{ trans('labels.desc') }} :
{{ Form::textArea('entity_desc', Input::old('entity_desc'), array('rows' => '4')) }}
 
{{ Form::submit('OK' , array( 'class' => 'button bn ok')) }}
{{ Form::close() }} @endsection