@extends('site.layouts.app') @section('title','Register') {{-- Seo tags start --}} @section('meta_description', 'This is the description for SEO') @section('meta_keywords', 'SEO, Keywords, Web Development') @section('meta_author', 'John Doe') {{-- Seo tags end --}} @section('content')
REGISTER
@csrf
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('mobile_number'))
{{ $errors->first('mobile_number') }}
@endif
@if ($errors->has('country_id'))
{{ $errors->first('country_id') }}
@endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if ($errors->has('password_confirmation'))
{{ $errors->first('password_confirmation') }}
@endif

Already a user? LOG IN
@endsection