@extends('layouts.admin') @section('header_title', $title) @section('header_subtitle', $subtitle) @section('content')
Voltar à listagem
@if ($errors->any())
@endif
@csrf @if($method !== 'POST') @method($method) @endif
@foreach($fields as $field)
@if(($field['type'] ?? 'text') === 'select') @elseif(($field['type'] ?? 'text') === 'textarea') @else @endif
@endforeach
Cancelar
@endsection