api/app/Http/Requests/Auth/RegisterRequest.php

35 lines
985 B
PHP

<?php
namespace App\Http\Requests\Auth;
use Illuminate\Contracts\Validation\ValidationRule;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Validation\Rules\Password;
class RegisterRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array<string, array<int, string|ValidationRule>>
*/
public function rules(): array
{
return [
'username' => ['required', 'string', 'max:120', 'unique:users,username'],
'email' => ['required', 'string', 'email', 'max:255', 'unique:users,email'],
'password' => ['required', 'string', Password::defaults(), 'confirmed'],
'device_name' => ['nullable', 'string', 'max:255'],
'avatar' => ['nullable', 'image', 'max:10240'],
];
}
}