Special Characters Not Allowed Validation In Laravel 9

Websolutionstuff | Dec-23-2022 | Categories : Laravel PHP

In this article, we will see special characters not allowed validation in laravel 9. Here, we will learn special character is not allowed in the textbox. Sometimes we required validation for input textbox. In the textbox special character is not allowed only allow characters and numbers are allowed.

We will create alphanumeric validation in laravel 7, laravel 8, and laravel 9. So, we will give you an example of validation in laravel 7/8/9.

So, let's see laravel 9 special characters not allowed validation and special characters not allowed regex example.

Example 1:

In this example, we will use the laravel alpha validation rule. The alpha rule only allows alphabets. So, add the following code to your file or controller.

<?php
    
namespace App\Http\Controllers;
    
use Illuminate\Http\Request;
use App\User;
    
class UserController extends Controller
{
    /**
     * Show the application dashboard.
     *
     * @return \Illuminate\Http\Response
     */
    public function create()
    {
        return view('index');
    }
    
    /**
     * Show the application dashboard.
     *
     * @return \Illuminate\Http\Response
     */
    public function store(Request $request)
    {
        $request->validate([
                'name' => 'required|alpha',
                'email' => 'required|email|unique:users'
            ]);
     
        $input = $request->all();
        $user = User::create($input);
      
        return back()->with('success', 'User created successfully.');
    }
}

 

Example 2:

In this example, we will use the laravel alpha_num validation rule. The alpha_ num rule allows alphabets and numbers. So, add the following code to your file or controller.

<?php
   
namespace App\Http\Controllers;
   
use Illuminate\Http\Request;
use App\User;
   
class UserController extends Controller
{
    /**
     * Show the application dashboard.
     *
     * @return \Illuminate\Http\Response
     */
    public function create()
    {
        return view('index');
    }
    
    /**
     * Show the application dashboard.
     *
     * @return \Illuminate\Http\Response
     */
    public function store(Request $request)
    {
        $request->validate([
                'name' => 'required|alpha_num',
                'email' => 'required|email|unique:users'
            ]);
     
        $input = $request->all();
        $user = User::create($input);
      
        return back()->with('success', 'User created successfully.');
    }
}

 

Example 3:

In this example, we will use the regex validation rule.

<?php
    
namespace App\Http\Controllers;
    
use Illuminate\Http\Request;
use App\User;
    
class UserController extends Controller
{
    /**
     * Show the application dashboard.
     *
     * @return \Illuminate\Http\Response
     */
    public function create()
    {
        return view('index');
    }
    
    /**
     * Show the application dashboard.
     *
     * @return \Illuminate\Http\Response
     */
    public function store(Request $request)
    {
        $request->validate([
                'name' => 'required|regex:/^[a-zA-Z]+$/u',
                'email' => 'required|email|unique:users'
            ]);
     
        $input = $request->all();
        $user = User::create($input);
      
        return back()->with('success', 'User created successfully.');
    }
}

Output:

special_characters_not_allowed_validation_in_laravel_9_output

 


You might also like:

Recommended Post
Featured Post
How to Get Current URL in Laravel
How to Get Current URL in Lara...

In this article, we will see how to get the current URL in laravel. If you want to get the current page URL in...

Read More

Mar-10-2021

Laravel 9 CRUD Operation Example
Laravel 9 CRUD Operation Examp...

As we know Laravel 9 was officially released yesterday with many new functionalities like Symfony 6.0 components, Symfon...

Read More

Feb-10-2022

How to Filter Datatable using Dropdown in Laravel 10
How to Filter Datatable using...

Hello developers! 👋 Ever found yourself dealing with a DataTable in Laravel and wished for a nifty way to filter th...

Read More

Feb-07-2024

How To Add Date Range Picker In Angular 15 Material
How To Add Date Range Picker I...

In this tutorial, I will guide you through the process of adding a date range picker component to your Angular 15 applic...

Read More

Jun-30-2023