@extends('release/layouts/default') @section('title') fullin In @parent @stop {{-- Page content --}} @section('content')

fullin In

Cargo details

{!! Form::label('t1', 'T1:') !!}
{!! Form::label('t1', $cargodetail->cargoheader->t1) !!}
{!! Form::label('cargo_type', 'Cargo Type:') !!}
{!! Form::label('cargo_type', $cargodetail->cargotype->name) !!}
{!! Form::label('consignee', 'Consignee:') !!}
{!! Form::label('consignee', $cargodetail->cargoheader->cargodeclarations->consignees->name) !!}
{!! Form::label('transitor', 'Transitor:') !!}
{!! Form::label('transitor', $cargodetail->cargoheader->cargodeclarations->transitors->name) !!}
{!! Form::label('licence_no', 'Licence:') !!} {!! Form::text('licence_no', null, ['class' => 'form-control','id'=>'driver_licence', 'placeholder'=>'Driver licence no']) !!}
{!! Form::label('', '') !!}
{!! Form::submit('Check',['id'=>'check','class'=>'btn btn-sm btn-info']); !!}
{!! Form::open(['route' => 'release.fullinins.store','id'=>'formdetail']) !!}
{!! Form::label('full_name', 'Full Name:') !!}
{!! Form::text('full_name', null, ['class' => 'form-control full_name']) !!}
{!! Form::label('licence_number', 'Licence number:') !!}
{!! Form::text('licence_number', null, ['class' => 'form-control licence_number']) !!}
{{-- --}} {{-- --}}
{!! Form::label('plate_number', 'Plate Number:') !!}
{!! Form::text('plate_number', null, ['class' => 'form-control']) !!}
{!! Form::label('trailer_plate_number', 'Trailer Plate Number:') !!}
{!! Form::text('trailer_plate_number', null, ['class' => 'form-control']) !!}
{!! Form::submit('Save', ['class' => 'btn btn-primary','id'=>'savedetail']) !!} Cancel
{!! Form::close() !!}
@stop @section('footer_scripts') @stop