John Shepherd
John Shepherd
Understood, thanks for the quick response. I'll probably just reword my error for now so it's like "Postcode must be valid".
Sure, quick example of the admin config ``` php Admin::model('App\Administrator')->title('Admins')->display(function () { $display = AdminDisplay::datatables(); $display->columns([ Column::string('name')->label('Name'), Column::string('email')->label('Email'), ]); return $display; })->create(function () { $form = AdminForm::form(); $form->items([ FormItem::text('name', 'Name')->required(),...