@extends('layouts.user') @section('content') @push('css') {{-- dropzone --}} @endpush

Registration for new user

@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('user_account')) {{ $errors->first('user_account') }} @endif
@if ($errors->has('mobile')) {{ $errors->first('mobile') }} @endif
@if ($errors->has('gender')) {{ $errors->first('gender') }} @endif
@if ($errors->has('religion')) {{ $errors->first('religion') }} @endif
@if ($errors->has('referral')) {{ $errors->first('referral') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('re_password')) {{ $errors->first('re_password') }} @endif
@push('alljs') @if ($message = Session::get('error')) @endif @if ($message = Session::get('success')) @endif @endpush @endsection