{!! Form::open([ 'files' => 'false', 'id' => 'formId', 'role' => 'form', 'class' => 'form-horizontal form-groups', ]) !!}
{!! Form::label('name', 'Name', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('name', $data['showData']->name ?? '', [ 'class' => 'form-control', 'id' => 'name', 'type' => 'text', 'placeholder' => 'Name', ]) !!} @if ($data['showData']) @endif

{{-- ------------------------------- Fams and Inventory Product for Mapping ---------------------------------
@if ($data['inv_status'])
{!! Form::label('company_id_fk', 'Product Name(Inventory)', ['class' => 'control-label']) !!}

@endif @if ($data['fams_status'])
{!! Form::label('company_id_fk', 'Product Name(Fams)', ['class' => 'control-label']) !!}

@endif
------------------------------- Fams and Inventory Product for Mapping --------------------------------- --}}
{!! Form::submit( $data['showData'] ?'Edit':'Submit', ['id' => 'add', 'class' => 'btn btn-info']) !!} Close
{!! Form::close() !!}
@section('footerAssets') @endsection