Edit File: UpdateDelegateRequest.php
<?php namespace App\Http\Requests\Api\Profile; use App\Traits\ApiTrait; use Illuminate\Contracts\Validation\Validator; use Illuminate\Foundation\Http\FormRequest; use Illuminate\Http\Exceptions\HttpResponseException; class UpdateDelegateRequest extends FormRequest { use ApiTrait; /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return true; } /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { $user = auth('api')->user(); return [ 'name' => 'nullable|string|min:3|max:191', 'email' => ['nullable', 'email', 'unique:users,email,'.$user->id], 'edit_avatar' => 'nullable|mimes:jpeg,png,jpg,gif,svg', 'phone' => 'nullable', 'country_key' => 'nullable', 'nationality_id'=> 'nullable', 'city_id' => 'nullable', 'region_id' => 'nullable', 'lat' => 'nullable', 'long' => 'nullable', 'address' => 'nullable', 'gender' => 'nullable', ]; } protected function failedValidation(Validator $validator) { throw new HttpResponseException($this->requestFailsReturn($validator)); } }
Back to File Manager