34 lines
833 B
PHP
34 lines
833 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\V3\Profile;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class EditRequest 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, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string>
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'first_name' => 'required|string',
|
|
'last_name' => 'required|string',
|
|
'degree' => 'required',
|
|
'major' => 'required',
|
|
'mobile' => 'required|regex:/^09\d{9}$/|numeric|digits:11',
|
|
'avatar' => 'mimes:png,jpg,jpeg|max:2048'
|
|
];
|
|
}
|
|
}
|