- Timestamp:
- 10/17/21 20:28:35 (3 years ago)
- Branches:
- develop, master
- Children:
- e6c1f87
- Parents:
- d795fa6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
app/Http/Requests/Dashboard/UsernameSettingsRequest.php
rd795fa6 rbd9e8e3 4 4 5 5 use Illuminate\Foundation\Http\FormRequest; 6 use Illuminate\Contracts\Validation\Validator; 7 use Illuminate\Validation\ValidationException; 6 8 7 9 class UsernameSettingsRequest extends FormRequest … … 28 30 ]; 29 31 } 32 33 protected function failedValidation(Validator $validator) 34 { 35 $response = redirect() 36 ->route('dashboard.settings.index') 37 ->with(['active_tab' => 'security']) 38 ->withErrors($validator); 39 40 throw (new ValidationException($validator, $response)) 41 ->errorBag($this->errorBag) 42 ->redirectTo($this->getRedirectUrl()); 43 } 30 44 }
Note:
See TracChangeset
for help on using the changeset viewer.