@extends('admin.layouts.admin') @section('title') Admin | Investor Add @endsection @section('content')

Investor/Add

Add Investor
@if(Session::has('success'))
{{ Session::get('success') }}
@endif @if(Session::has('error'))
{{ Session::get('error') }}
@endif
{{ csrf_field() }} @if(!empty($user)) @method('PUT') @endif
@if ($errors->has('full_name')) {{ $errors->first('full_name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
@if ($errors->has('dob')) {{ $errors->first('dob') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif

Upload Documents

@error('id_proof') {{ $message }} @enderror Allowed formats: PDF, JPG, PNG | Max size: 2MB
@error('address_proof') {{ $message }} @enderror Allowed formats: PDF, JPG, PNG | Max size: 2MB
Cancel
@endsection @section('scripts') @endsection