/home/mip/mip/app/Modules/Client/Requests/Pages/AboutUsRequest.php
<?php

namespace QxCMS\Modules\Client\Requests\Pages;

use Illuminate\Foundation\Http\FormRequest;

class AboutUsRequest extends FormRequest
{
    /**
     * 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()
    {
        return [
            'title'     => 'required',
            'content'     => 'required',
            'status'     => 'required',
        ];
    }

    public function messages()
    {
        return [
            // 'title.required' => 'The Question field is required.',
        ];
    }
}