Merge pull request #114 from m4sk1n/settings-bio-fix

Fix “Can't update account settings without setting a bio”
pull/86/head^2
daniel 8 years ago committed by GitHub
commit dcd6edb154
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -22,7 +22,7 @@ class SettingsController extends Controller
{
$this->validate($request, [
'name' => 'required|string|max:30',
'bio' => 'string|max:125'
'bio' => 'nullable|string|max:125'
]);
$changes = false;

Loading…
Cancel
Save