@extends('layouts.app') @section('title',($record->exists?'Edit ':'Add ').$config['singular']) @section('page_title',($record->exists?'Edit ':'Add ').$config['singular']) @section('content')

{{ $record->exists?'Edit':'Add' }} {{ $config['singular'] }}

Complete the required fields and save the record.

Back
@csrf @if($record->exists)@method('put')@endif
@foreach($config['fields'] as $name=>$field) @php($type=$field['type'] ?? 'text') @php($value=old($name,$record->{$name} ?? ($field['default'] ?? null))) @if($type==='checkbox')
@else
@if($type==='textarea') @elseif(in_array($type,['select','relation'])) @else@endif @error($name)
{{ $message }}
@enderror
@endif @endforeach
Cancel
@endsection