53 lines
1.5 KiB
PHP
53 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Admin;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
use Illuminate\Support\Facades\Gate;
|
|
use Illuminate\Validation\Rules\Password;
|
|
|
|
class StoreUserRequest extends FormRequest
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*/
|
|
public function authorize(): bool
|
|
{
|
|
return Gate::allows('manage-settings');
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string>
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'name' => ['required', 'string', 'max:255'],
|
|
'email' => ['required', 'string', 'email', 'max:255', 'unique:users,email'],
|
|
'password' => ['required', 'string', Password::defaults(), 'confirmed'],
|
|
'roles' => ['array'],
|
|
'roles.*' => ['integer', 'exists:roles,id'],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Get custom error messages.
|
|
*
|
|
* @return array<string, string>
|
|
*/
|
|
public function messages(): array
|
|
{
|
|
return [
|
|
'name.required' => 'Ime uporabnika je obvezno.',
|
|
'email.required' => 'E-poštni naslov je obvezen.',
|
|
'email.email' => 'E-poštni naslov mora biti veljaven.',
|
|
'email.unique' => 'Ta e-poštni naslov je že v uporabi.',
|
|
'password.required' => 'Geslo je obvezno.',
|
|
'password.confirmed' => 'Gesli se ne ujemata.',
|
|
'roles.*.exists' => 'Izbrana vloga ni veljavna.',
|
|
];
|
|
}
|
|
}
|