@extends('layouts/contentLayoutMaster') @section('title', 'Create User') @section('vendor-style') {{-- Page Css files --}} @endsection @section('page-style') {{-- Page Css files --}} @endsection @section('content')
{{ csrf_field() }}
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(session('success'))
{{ session('success') }}
@endif
@if($errors->has('first_name'))

{{ $errors->first('first_name') }}

@endif
@if($errors->has('middle_name'))

{{ $errors->first('middle_name') }}

@endif
@if($errors->has('last_name'))

{{ $errors->first('last_name') }}

@endif
@if($errors->has('email'))

{{ $errors->first('email') }}

@endif
@if($errors->has('country_code'))

{{ $errors->first('country_code') }}

@endif
@if($errors->has('mobile'))

{{ $errors->first('mobile') }}

@endif
@if($errors->has('password'))

{{ $errors->first('password') }}

@endif
@endsection @section('vendor-script') {{-- Vendor js files --}} @endsection @section('page-script') {{-- Page js files --}} @endsection