dbfdg
{{ Form::model($warehouse, array('route' => array('warehouse.update', $warehouse->id), 'method' => 'PUT')) }}
{{-- start for ai module--}}
@php
$plan= \App\Models\Utility::getChatGPTSettings();
@endphp
@if($plan->chatgpt == 1)
@endif
{{-- end for ai module--}}
{{ Form::label('name', __('Name'),['class'=>'form-label']) }}
{{ Form::text('name', null, array('class' => 'form-control','required'=>'required')) }}
@error('name')
{{ $message }}
@enderror
{{Form::label('address',__('Address'),array('class'=>'form-label')) }}
{{Form::textarea('address',null,array('class'=>'form-control','rows'=>3))}}
{{Form::label('city',__('City'),array('class'=>'form-label')) }}
{{Form::text('city',null,array('class'=>'form-control'))}}
{{Form::label('city_zip',__('Zip Code'),array('class'=>'form-label')) }}
{{Form::text('city_zip',null,array('class'=>'form-control'))}}
{{ Form::close() }}