@extends('layouts.sellerlayouts.app') @section('title') New User | Company Name @endsection @push('css') @endpush @section('contents')
New User
@csrf
@if ($errors->has('name'))

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

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

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

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

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

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

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

@endif
@endsection @push('js') @endpush