diff --git a/resources/views/admin/lists/show.blade.php b/resources/views/admin/lists/show.blade.php index 7d0f7d1..de8c551 100644 --- a/resources/views/admin/lists/show.blade.php +++ b/resources/views/admin/lists/show.blade.php @@ -19,6 +19,13 @@
+ @if (count($errors) > 0) +
+ @foreach ($errors->all() as $error) +
{{ $error }}
+ @endforeach +
+ @endif
input('email'); - $name = $request->input('name'); + $email = trim($request->input('email')); + $name = trim($request->input('name')); if (! $this->emailValidator->isValid($email)) { if ($request->wantsJson()) {