Edit Element

{{ Form::label('element_id', 'Element Type', ['class'=>'col-sm-2 control-label', 'for'=>'validate-element']) }}
{{ Form::select('element_id', $typeselements, null, ['class' => 'form-control', 'placeholder' => 'Element Type', 'required' =>'', 'id'=>'validate-select' ])}}
{{ Form::label('language_id', 'Language', ['class'=>'col-sm-2 control-label', 'for'=>'validate-element']) }}
{{ Form::select('language_id', $languages, null, ['class' => 'form-control', 'placeholder' => 'Language', 'required' =>'', 'id'=>'validate-select' ])}}
{{ Form::label('title', 'Title', ['class'=>'col-sm-2 control-label', 'for'=>'validate-title']) }}
{{ Form::text('title', null, array( 'class' => 'form-control', 'name'=> 'title', 'id' => 'validate-text', 'placeholder' => 'Title...', 'required'=> '', 'maxlength'=>'255')) }}
{{ Form::label('description', 'Description', ['class'=>'col-sm-2 control-label', 'for'=>'validate-desc']) }}
{{ Form::textarea('description', null, array('class' => 'form-control', 'placeholder' => 'Description...', 'rows'=> '5')) }}
{{ Form::label('filename', 'Upload File:', ['class' => 'col-sm-2 control-label']) }}
{{ Form::file('filename') }}