File manager - Edit - /home/linknsbh/cecil-hotel.net/vendor/botble/platform/acl/src/Forms/Auth/AuthForm.php
Back
<?php namespace Botble\ACL\Forms\Auth; use Botble\Base\Facades\Assets; use Botble\Base\Forms\FieldOptions\HtmlFieldOption; use Botble\Base\Forms\Fields\HtmlField; use Botble\Base\Forms\FormAbstract; use Botble\Base\Models\BaseModel; class AuthForm extends FormAbstract { public function setup(): void { Assets::addScripts('form-validation') ->removeStyles([ 'select2', 'fancybox', 'spectrum', 'custom-scrollbar', 'datepicker', 'fontawesome', 'toastr', ]) ->removeScripts([ 'select2', 'fancybox', 'cookie', 'spectrum', 'toastr', 'modernizr', 'excanvas', 'jquery-waypoints', 'stickytableheaders', 'ie8-fix', ]); $this ->model(BaseModel::class) ->template('core/acl::auth.form'); } public function heading(string $heading): self { $this->add( 'heading', HtmlField::class, HtmlFieldOption::make() ->content(sprintf( '<h2 class="h3 text-center mb-3">%s</h2>', $heading )) ->toArray() ); return $this; } public function submitButton(string $label, string|null $icon = null): self { $this ->add( 'open_wrap_button', HtmlField::class, HtmlFieldOption::make()->content('<div class="form-footer">')->toArray() ) ->add( 'button_submit', HtmlField::class, HtmlFieldOption::make()->view('core/acl::auth.includes.submit', compact('label', 'icon'))->toArray() ) ->add( 'close_wrap_button', HtmlField::class, HtmlFieldOption::make()->content('</div>')->toArray() ); return $this; } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.31 | Generation time: 0.53 |
proxy
|
phpinfo
|
Settings