@extends('layouts.app') @section('title', 'Institute Profile') @section('page-title', 'Institute Profile') @section('breadcrumb', 'Settings / Institute Profile') @section('content') @php $social = old('social_links', $company->social_links ?? []); $profile = old('profile', $company->profile ?? []); $highlightsText = old('highlights', implode("\n", $company->highlights ?? [])); $specialtiesText = old('profile.specialties', implode("\n", $profile['specialties'] ?? [])); $stats = old('profile.stats', $profile['stats'] ?? [['label' => '', 'value' => ''], ['label' => '', 'value' => ''], ['label' => '', 'value' => ''], ['label' => '', 'value' => '']]); $whyUs = old('profile.why_us', $profile['why_us'] ?? [ ['title' => '', 'text' => '', 'icon' => 'fa-graduation-cap'], ['title' => '', 'text' => '', 'icon' => 'fa-users'], ['title' => '', 'text' => '', 'icon' => 'fa-laptop'], ['title' => '', 'text' => '', 'icon' => 'fa-certificate'], ]); $faqs = old('profile.faqs', $profile['faqs'] ?? [['q' => '', 'a' => ''], ['q' => '', 'a' => ''], ['q' => '', 'a' => '']]); while (count($stats) < 4) { $stats[] = ['label' => '', 'value' => '']; } while (count($whyUs) < 4) { $whyUs[] = ['title' => '', 'text' => '', 'icon' => 'fa-check-circle']; } while (count($faqs) < 3) { $faqs[] = ['q' => '', 'a' => '']; } @endphp

Update your public institute profile basics, branding, and story.

Public URL: {{ $publicUrl }}

Preview profile
Testimonials Reviews Gallery Videos Blogs Team Enquiries
@csrf @method('PUT')

Basics

Mission, vision & facts

Stats

@foreach($stats as $i => $stat)
@endforeach

Why choose us

@foreach($whyUs as $i => $item)
@endforeach

Branding

@if($company->logoUrl()) @endif
@if($company->coverUrl()) @endif

FAQs

@foreach($faqs as $i => $faq)
@endforeach

Contact

Social links

@foreach(['facebook' => 'Facebook', 'instagram' => 'Instagram', 'youtube' => 'YouTube', 'linkedin' => 'LinkedIn', 'twitter' => 'Twitter / X', 'telegram' => 'Telegram'] as $key => $label)
@endforeach
View public page
@endsection