mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.2 KiB
PHP
41 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Validation\Rule;
|
|
|
|
class ProfileCustomerRequest extends FormRequest
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function authorize()
|
|
{
|
|
return Auth::guard('customer')->check();
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules()
|
|
{
|
|
|
|
return [
|
|
'name' => ['required', 'string', 'max:255'],
|
|
'email' => ['required', 'string', 'email', 'max:255', Rule::unique('customers')->ignore(Auth::guard('customer')->id())],
|
|
'password' => ['nullable', 'string', 'min:6', 'confirmed'],
|
|
'mobile' => ['required', 'string', 'min:10',Rule::unique('customers')->ignore(Auth::guard('customer')->id())],
|
|
'postal_code' => ['required', 'string', 'min:10'],
|
|
'address' => ['required', 'string', 'min:10'],
|
|
'state' => ['required', 'numeric'],
|
|
'city' => ['required', 'numeric'],
|
|
];
|
|
}
|
|
}
|