@extends('layouts.app') @section('title') @if( ! empty($title)) {{ $title }} | @endif @parent @endsection @section('content')
@include('admin.sidebar_menu')
@if( ! empty($title)) @endif @include('admin.flash_msg')
@csrf
{!! $errors->has('name')? '

'.$errors->first('name').'

':'' !!}
{!! $errors->has('email')? '

'.$errors->first('email').'

':'' !!}
{!! $errors->has('phone')? '

'.$errors->first('phone').'

':'' !!}
{!! $errors->has('gender')? '

'.$errors->first('gender').'

':'' !!}
{!! $errors->has('country')? '

'.$errors->first('country').'

':'' !!}
{!! $errors->has('password')? '

'.$errors->first('password').'

':'' !!}
{!! $errors->has('password_confirmation')? '

'.$errors->first('password_confirmation').'

':'' !!}

@endsection