@extends('admin.layouts.app') @section('title', $title) @section('content')

{{ $title }}

Add extra fields that appear on the user registration form. Values are stored per-user and visible in the user edit panel.

@include('admin.layouts.notifications')
@if($fields->isEmpty())

No custom registration fields yet. Add one.

@else @foreach($fields as $field) @endforeach
# Label Field Name Type Required Active Sort Actions
{{ $field->label }} {{ $field->name }} {{ $field->type }} @if($field->is_required) Yes @else No @endif @if($field->is_active) Active @else Inactive @endif {{ $field->sort_order }}
@csrf @method('DELETE')
@endif
@if($fields->count() > 1) @endif @endsection