{{-- Name: company.partials.extraServices Author: JH2 Created: 2016-11-09 --}} @extends('partials.box') @section($content_id) {!! Form::open(['route' => ['admin.company.postExtraService', $company->id], 'method' => 'post', 'class' => 'form-horizontal']) !!}
{!! Form::label('service', Lang::get('company.extraServices.service'), ['class' => 'col-md-3 control-label']) !!}
{!! Form::select('service', Company::extraServicesDropdown(), old('service'), ['class' => 'form-control']) !!} {!! $errors->first('service', ':message') !!}

{{ Lang::get('company.extraServices.description') }}

{!! Form::submit(Lang::get('company.extraServices.saveBtn'), ['class' => 'btn btn-primary pull-right']) !!}
{!! Form::close() !!} @stop