{!! Form::open(['url' => action([\App\Http\Controllers\Restaurant\TableController::class, 'update'], [$table->id]), 'method' => 'PUT', 'id' => 'table_edit_form' ]) !!}

@lang( 'restaurant.edit_table' )

{!! Form::label('name', __( 'restaurant.table_name' ) . ':*') !!} {!! Form::text('name', $table->name, ['class' => 'form-control', 'required', 'placeholder' => __( 'brand.brand_name' )]); !!}
{!! Form::label('description', __( 'restaurant.short_description' ) . ':') !!} {!! Form::text('description', $table->description, ['class' => 'form-control','placeholder' => __( 'brand.short_description' )]); !!}
{!! Form::close() !!}