@extends('cms.layouts.main') @section('content') @include('cms.layouts.headers.partials', ['title' => 'Edit Record'])

{{ $page_info['title'] }}

@include('cms.components.alert', ['with' => 'status', 'class' => 'success'])
@csrf @method('put') {{-- Icon --}} @include('cms.components.inputs.image', ['label' => 'Icon (.svg)', 'asterix' => true, 'name' => 'icon']) {{-- App Icon --}} @include('cms.components.inputs.image', ['label' => 'App Icon (.png)', 'asterix' => true, 'name' => 'app_icon']) {{-- Title --}} @include('cms.components.inputs.text', ['label' => 'Title', 'asterix' => true, 'name' => 'title', 'maxlength' => 255]) {{-- Link --}} @include('cms.components.inputs.text', ['label' => 'Link', 'asterix' => true, 'name' => 'link', 'maxlength' => 255])
@include('cms.layouts.footers.auth')
@endsection