@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 }}