@extends('layouts.admin_template') @section('content')
@foreach(['danger','warning','success','info'] as $msg) @if(Session::has('alert-'.$msg))

{{ Session::get('alert-'.$msg) }} ×

@endif @endforeach

Submit User Documents

{{ csrf_field() }}

Upload POI Document

@if($errors->has('poi')) {{ $errors->first('poi') }} @endif
@error('expire_date') {{ $message }} @enderror
@if ($errors->has('doc_no')) {{ $errors->first('doc_no') }} @endif
@if($errors->has('poi_doctype')) {{ $errors->first('poi_doctype') }} @endif
@if ($errors->has('bankcountry')) {{ $errors->first('bankcountry') }} @endif

Upload POA Document

@if($errors->has('poa')) {{ $errors->first('poa') }} @endif
@if ($errors->has('bankcountry')) {{ $errors->first('bankcountry') }} @endif
@if ($errors->has('city')) {{ $errors->first('city') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('zip_code')) {{ $errors->first('zip_code') }} @endif
@endsection