@extends('layouts.UserLayout') @section('content')
@if(Session::has('message'))

{{ Session::get('message') }}

@endif

Documents Upload

{{\Illuminate\Support\Facades\Auth::user()->domainName}}

Note: Download document first then upload duly signed and stamped document

Hard copy of Letter of Undertaking should be submitted within 10 days

@php $ext = DB::table('domain_extensions')->where('id',Auth::user()->domainExtensionID)->first(); $ids = explode(",",$ext->doc_ids); @endphp @foreach(\Illuminate\Support\Facades\DB::table('document_category')->whereIn('id',$ids)->get() as $key=> $doc) @if($doc->title == 'Letter of Undertaking' || $doc->title == 'Application Letter') @elseif($doc->title == 'Letter of Authorization') @else @endif @endforeach
@if(isset($mode) && $mode=='renew') @else
Submit
@endif
@endsection @section("js") @endsection