@extends('backend.layouts.app') @section('title', @$title) @section('content') {!! breadcrumb([ 'title' => @$title, route('admin.dashboard') => _trans('common.Dashboard'), '#' => @$title, ]) !!}
@csrf {{-- dynamic attributes --}} @if (@$attributes) @foreach (@$attributes as $key => $attribute)
@if (@$attribute['type'] == 'text') @elseif (@$attribute['type'] == 'select') @elseif (@$attribute['type'] == 'number') @elseif (@$attribute['type'] == 'date') @elseif (@$attribute['type'] == 'file')
@elseif (@$attribute['type'] == 'checkbox')
@elseif (@$attribute['type'] == 'textarea') @elseif (@$attribute['type'] == 'color') @elseif (@$attribute['type'] == 'radio')
@foreach (@$attribute['options'] as $option)
@endforeach
@endif @error($key) {{ $message }} @enderror
@endforeach @endif
@endsection @section('script') @endsection