feat(contact): remove contact form functionality

Signed-off-by: miguel456 <me@nogueira.codes>
This commit is contained in:
2022-10-09 21:41:57 +01:00
parent 54760f71d8
commit 1de9de2a9b
2 changed files with 0 additions and 96 deletions

View File

@@ -1,32 +0,0 @@
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class HomeContactRequest 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 [
'email' => 'required|email',
'msg' => 'required|string',
'captcha' => 'required|string'
];
}
}