Supplier Records
{!! Form::text('name', null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('name', '

:message

') !!}
{!! Form::text('company_name', null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('company_name', '

:message

') !!}
{!! Form::text('service', null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('service', '

:message

') !!}
{!! Form::text('phone_no', null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('phone_no', '

:message

') !!}
{!! Form::text('landLine_no', null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('landLine_no', '

:message

') !!}
{!! Form::text('fax_no', null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('fax_no', '

:message

') !!}
{!! Form::text('email', null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('email', '

:message

') !!}
{!! Form::text('website', null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('website', '

:message

') !!}
{!! Form::select('country', ['' => 'Select Country'] + $page_data['countryData']->toArray(), null, ['class' => 'm-wrap span12 wh-select2-class arr']) !!} {!! $errors->first('country', '

:message

') !!}
{!! Form::select('location', $page_data['locationData']->toArray(), (isset($supplier->location) && !empty($supplier->location)) ? explode(",", $supplier->location) : null, ['class' => 'm-wrap span12 wh-select2-class arr js-select-type-multiple', 'name' => 'location[]', 'multiple' => 'multiple', 'required' => 'true']) !!} {!! $errors->first('location', '

:message

') !!} {!! $errors->first('location', '

:message

') !!}
{!! Form::select('status', ['Inactive', 'Active'], null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('status', '

:message

') !!}
Store Logistic Transport Warehouse Fuel Mis
{!! Form::submit(isset($submitButtonText) ? $submitButtonText : 'Create', ['class' => 'btn green']) !!}