{{-- Name: companyProp.partials.edit Author: JH2 Created: 2016-02-04 --}} @extends('partials.box') @section($content_id) {!! Form::model($prop, ['route' => ['admin.company.prop.update', $prop->id], 'method' => 'put', 'class' => 'form-horizontal']) !!}
{!! Form::label('value', Lang::get('company.props.form.value'), ['class' => 'col-md-3 control-label']) !!}
{!! Form::text('value', old('value'), ['class' => 'form-control']) !!} @if(array_key_exists('description', CompanyProp::_get('fields')[$prop->name])) {{ CompanyProp::_get('fields')[$prop->name]['description'] }} @endif {!! $errors->first('value', ':message') !!}
{!! Form::submit(Lang::get('company.props.form.save'), ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!} @stop