@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
| # |
Label |
Field Name |
Type |
Required |
Active |
Sort |
Actions |
@foreach($fields as $field)
|
{{ $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 }} |
|
@endforeach
@endif
@if($fields->count() > 1)
@endif
@endsection