{{-- Name: companyProp.partials.create Author: JH2 Created: 2016-02-04 --}} @extends('partials.box') @section($content_id) {!! Form::open(['route' => ['admin.company.prop.store', $company->id], 'method' => 'post', 'class' => 'form-horizontal']) !!}
{!! Form::label('name', Lang::get('company.props.form.name'), ['class' => 'col-md-3 control-label']) !!}
{!! Form::select('name', $availableProps, old('name'), ['class' => 'form-control']) !!} {!! $errors->first('name', ':message') !!}
{!! Form::label('value', Lang::get('company.props.form.value'), ['class' => 'col-md-3 control-label']) !!}
{!! Form::text('value', old('value'), ['class' => 'form-control']) !!} {!! $errors->first('value', ':message') !!}
{!! Form::submit(Lang::get('company.props.form.save'), ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!} @stop