check() && auth()->user()->hasRole('super-admin'); } /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { return [ // 'name' => ['required','string','min:3','max:128'], 'tag' => ['required','alpha_dash:','min:2','max:7'], 'img' => ['nullable','file','mimes:svg,png,jpg,gif'], ]; } }