@extends('layouts.dmeadmin.newmaster') @section('ship_manage') active @endsection @section('content')
Edit Ship admin can edit ship information.
{{ Form::open(array('id'=>'company_form','class'=>'form form-horizontal')) }}
{{ Form::text('ship_name', $shiprecord->ship_name, array('class'=>'form-control', 'id'=>'tags','placeholder'=>'Vessel Name')) }}
{{ Form::text('imo_number',$shiprecord->imo_number, array('class'=>'form-control','placeholder'=>'IMO')) }}
{{ Form::select('ship_type',$shipType, $shiprecord->ship_type_id, array('class'=>'form-control m-b','placeholder'=>'AIS Type')) }}
{{ Form::text('mmsi', $shiprecord->mmsi, array('class'=>'form-control','placeholder'=>'MMSI')) }}
{{ Form::text('gross_tonnage', $shiprecord->gross_tonnage, array('class'=>'form-control','placeholder'=>'Gross Tonnage')) }}
{{ Form::text('deadweight', $shiprecord->deadweight,array('class'=>'form-control','placeholder'=>'Deadweight')) }}
{{ Form::text('yearbuild', $shiprecord->yearbuild,array('class'=>'form-control','placeholder'=>'Year Built')) }}
{{ Form::select('flag',$countryName, $shiprecord->flag_code,array('class'=>'form-control m-b','placeholder'=>'Flag')) }}
{{ Form::text('home_port', $shiprecord->home_port,array('class'=>'form-control','placeholder'=>'Home Port')) }}
{{ Form::close() }}
@stop