@extends("admin.template.layout") @section('content')
{{$page_heading." ".$mode}}
{{--
@if($id != '') @endif --}}
@csrf()
@if($mode == 'Create') @else @if($is_approved == 'approved') @else @php $p_status = ''; $p_status_color = ''; if($is_approved == 'pending'){ $a_status = 'Pending'; $a_status_color = 'secondary'; } else if($is_approved == 'approved'){ $a_status = 'Approved'; $a_status_color = 'info'; } else if($is_approved == 'rejected'){ $a_status = 'Rejected'; $a_status_color = 'danger'; } $a_statuses = ['pending','approved','rejected']; $a_html = ''; if($is_approved == 'pending'){ $a_html .= ''; } else{ $a_html = ''.$a_status.''; } @endphp {!! $a_html !!} @endif @endif
@if($logo != null) @endif
@if($company_license != null) @endif
@if($banner != null) @endif
@stop @section('script') @stop