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

@lang( 'lang.edit_tag' )

{!! Form::label('title', __( 'lang.title' ) . ':*') !!} {!! Form::text('title', $tag->title, ['class' => 'form-control', 'required', 'placeholder' => __( 'lang.title' )]); !!}
{!! Form::close() !!}