@extends('layouts.template') @section('content')
@if(Session::has('flash_message'))

{{ Session::get('flash_message') }}

@endif
{!! Form::open(['method' => 'GET', 'url' => '/third/third_party','id'=>'form1','class' => 'form-vertical', 'role' => 'search']) !!}
  • {!! Form::select('transporter',['' =>'Select Transporter'] + $page_data['transporter']->toArray() ,null,['id'=>'transporter_1','class' => ' form-control arr']) !!}
  • {!! Form::select('truck',['' =>'Select Truck'] + $page_data['truck']->toArray() ,null,['id'=>'truck_1','class' => 'form-control arr']) !!}
  • {!! Form::select('trailer',['' =>'Select Trailer'] + $page_data['trailer']->toArray() ,null,['id'=>'trailer_1','class' => 'form-control arr']) !!}
{!! Form::close() !!}
{!! Form::open(['url' => 'third/third_party/store', 'id'=>'transportcreationform', 'files' => true]) !!}
{!! Form::select('transporter',['' =>'Select Transporter'] + $page_data['transporter']->toArray() ,null,['class' => 'col-md-6 form-control arr']) !!}
{!! $errors->first('transporter', '

:message

') !!}
{!! Form::text('truck', null, ['class' => 'form-control']) !!} {!! $errors->first('truck', '

:message

') !!}
{!! Form::text('trailer', null, ['class' => 'form-control']) !!} {!! $errors->first('trailer', '

:message

') !!}
{!! Form::submit(isset($submitButtonText) ? $submitButtonText : 'Create', ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!}