@extends('layout') @section('content') Registration @csrf Name @if ($errors->has('name')) {{ $errors->first('name') }} @endif Email @if ($errors->has('email')) {{ $errors->first('email') }} @endif Password @if ($errors->has('password')) {{ $errors->first('password') }} @endif Phone Number @if ($errors->has('phone_number')) {{ $errors->first('phone_number') }} @endif Address @if ($errors->has('address')) {{ $errors->first('address') }} @endif City @if ($errors->has('city')) {{ $errors->first('city') }} @endif City Code @if ($errors->has('city_code')) {{ $errors->first('city_code') }} @endif Remember Me Register @endsection