Preview: ProfileUpdateRequest.php
Size: 627 B
/home/byroehnu/cnggold.com.ng/app/Http/Requests/Backend/ProfileUpdateRequest.php
<?php
namespace App\Http\Requests\Backend;
use Illuminate\Foundation\Http\FormRequest;
class ProfileUpdateRequest 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|string>
*/
public function rules(): array
{
return [
'name' => 'required|max:255',
'about' => 'required|max:255',
];
}
}
Directory Contents
Dirs: 0 × Files: 6