BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
.
/
app.imagivibe.com
/
resources
/
views
/
default
/
panel
/
admin
/
howitworks
📤 Upload
📝 New File
📁 New Folder
Close
Editing: HowitWorksNewOrEdit.blade.php
@extends('panel.layout.settings') @section('title', isset($howitWorks) ? __('Edit Step') : __('Create New Step')) @section('titlebar_actions', '') @section('settings') <form class="flex flex-col gap-5" id="item_edit_form" enctype="multipart/form-data" onsubmit="return howitWorksSave({{ $howitWorks->id ?? null }});" > <x-forms.input id="order" name="order" label="{{ __('Order') }}" type="number" size="lg" value="{{ isset($howitWorks) ? $howitWorks->order : null }}" required /> <x-forms.input id="title" name="title" label="{{ __('Title') }}" type="textarea" rows="5" size="lg" required >{{ isset($howitWorks) ? $howitWorks->title : null }}</x-forms.input> <x-forms.input id="description" name="description" label="{{ __('Description') }}" type="textarea" rows="10" size="lg" required >{{ isset($howitWorks) ? $howitWorks->description : null }}</x-forms.input> <x-forms.input id="bg_color" name="bg_color" label="{{ __('Background Color') }}" type="color" size="lg" value="{{ isset($howitWorks) ? $howitWorks->bg_color : null }}" /> <x-forms.input id="bg_image" name="bg_image" label="{{ __('Background Image') }}" type="file" size="lg" /> <x-forms.input id="text_color" name="text_color" label="{{ __('Text Color') }}" type="color" size="lg" value="{{ isset($howitWorks) ? $howitWorks->text_color : null }}" /> <x-forms.input id="image" name="image" label="{{ __('Image') }}" type="file" size="lg" /> <x-button id="item_edit_button" size="lg" type="submit" > {{ __('Save') }} </x-button> </form> @endsection @push('script') <script src="{{ custom_theme_url('/assets/js/panel/howitworks.js') }}"></script> @endpush
Save
Cancel