@component('backoffice._components.tab', ['item' => 'Content', 'active' => true])
{{ html()->horizontalFormGroup()->required()->text('first_name', 'First name') }} {{ html()->horizontalFormGroup()->required()->text('last_name', 'Last name') }} {{ html()->horizontalFormGroup()->required()->text('slug', 'Slug') }} {{ html()->horizontalFormGroup()->required()->text('email', 'E-mail') }} {{ html()->horizontalFormGroup()->required()->text('phone', 'Phone') }} {{ html()->translations(function () { return [ html()->horizontalFormGroup()->required()->text('title', 'Title'), html()->horizontalFormGroup()->required()->textarea('description', 'Description'), ]; }) }}
@endcomponent @component('backoffice._components.tab', ['item' => 'Media'])
{{ html()->horizontalFormGroup()->media('featured', 'image', 'Featured') }}
@endcomponent @component('backoffice._components.tab', ['item' => 'Meta'])
{{ html()->seo() }}
@endcomponent