{!! Form::open(['url' => action([\App\Http\Controllers\CashRegisterListController::class, 'update'], [$crl->id]), 'method' => 'PUT', 'id' => 'cash_register_list_add_form' ]) !!}

@lang( 'cash_register.edit_list' )

{!! Form::label('name', __( 'cash_register.cash_register_name' ) . ':*') !!} {!! Form::text('name', $crl->name, ['class' => 'form-control', 'required', 'placeholder' => __( 'cash_register.cash_register_name' ) ]); !!}
{!! Form::label('business_id', __('business.business_name') . ':*') !!} {{-- @show_tooltip(__('tooltip.invoice_layout')) --}} {!! Form::select('business_id', $business, $crl->business_id, ['class' => 'form-control', 'required', 'placeholder' => __('messages.please_select')]); !!}
{!! Form::label('location_id', __('business.business_location') . ':*') !!} {{-- @show_tooltip(__('tooltip.invoice_layout')) --}} {!! Form::select('location_id', $business_location, $crl->location_id, ['class' => 'form-control', 'required', 'placeholder' => __('messages.please_select')]); !!}
{!! Form::close() !!}