Christian Taylor

Results 16 issues of Christian Taylor

This PR respects old form input values even if the input is named using nested "array notation". Old values for form inputs with names like `profile[email]` and `employees[0][first_name]` will work...

Has switching to tabs instead of spaces been considered for accessibility reasons? This tweet has been making the rounds recently: https://twitter.com/Rich_Harris/status/1541761871585464323 Kirby CMS recently made the switch too: https://github.com/getkirby/kirby/pull/4454

Using Laravel 9.34.0 and stock `session` auth driver. Installed the package: ``` "lab404/laravel-impersonate": "^1.7", ``` Added `Impersonate` trait to `app\User.php`: ``` use HasFactory, Notifiable, Impersonate; ``` Added the route helper...

I have a Trix editor sitting in a dialog modal. The dialog is configured to close when a user clicks outside of the dialog content. When a user clicks the...

This PR prevents exception messages from being swallowed by build tasks. My SSG config is set to fail on errors: ```php // config/statamic/ssg.php 'failures' => 'errors', ```` I ran into...

This PR introduces a new request queuing and caching system that will support client-side routing features similar to `hx-boost` and Hotwire's Turbo. The queue will handle concurrency issues in situations...

I'm assuming bots will eventually find the "Post a job" form. We can lock this down by implementing something like [Spatie's Honeypot](https://github.com/spatie/laravel-honeypot) package. Additionally [rate limiting the endpoint that creates...

security

Sometimes the Job Board emails end up in spam inboxes. It might be helpful to provide a reminder to check your spam in the message before the "mail" field on...

Some simple formatting in the "Job Description" field might be nice.

enhancement