@extends('frontend.layouts.app') @section('title', 'About Us') @section('meta', 'About Us') @section('content')
Banner Image

{{ __('about-us.about_us') }}

{{ __('about-us.home') }} / {{ __('about-us.about_us') }}

{{ __('about-us.who_we_are') }}

{{ __('about-us.about_us') }}

{{ __('about-us.discover_story') }}

@php $firstProfile = $companyProfiles->first(); @endphp @if ($firstProfile)
@if ($firstProfile->image) {{ $firstProfile->name_en }} @endif

{{ app()->getLocale() == 'np' ? $firstProfile->name_np : $firstProfile->name_en }}

{!! app()->getLocale() == 'np' ? $firstProfile->description_np : $firstProfile->description_en !!}

@endif

{{ __('about-us.functions') }}

{{ __('about-us.functions_description') }}

@foreach ($companyProfiles->skip(1) as $profile)
@if ($profile->image) {{ $profile->name_en }} @endif

{{ __('about-us.fig') }} {{ app()->getLocale() == 'np' ? $profile->name_np : $profile->name_en }}

{{ app()->getLocale() == 'np' ? $profile->name_np : $profile->name_en }}

{!! app()->getLocale() == 'np' ? $profile->description_np : $profile->description_en !!}

@endforeach
@endsection