@extends('admin._layouts.index') @push('USER SETTING') here show @endpush @push($title) active @endpush @section('content') @component('admin._card.breadcrumb') @slot('header') {{ $title }} @endslot @slot('page') Form @endslot @endcomponent

Form {{ isset($data->id) ? 'Edit' : 'Input' }}

@csrf
@if (isset($data->id)) @else @endif
@endsection @push('jsScriptForm') @if (isset($data->id)) @include('admin._card._updateAjax') @else @include('admin._card._createAjax') @endif @endpush