@extends('admin.layouts.app') @section('title', 'About Page') @section('breadcrumb')
  • Pages
  • About
  • @endsection @section('heading', 'About Page') @section('subheading', 'Manage company information and team.') @section('content')
    @csrf {{-- Company Information --}}

    Company Information

    {{-- Team Members --}}

    Team Members

    @foreach ([['name' => 'Raj Mehta', 'designation' => 'CEO & Founder'], ['name' => 'Priya Sharma', 'designation' => 'Head of Sales'], ['name' => 'Arjun Verma', 'designation' => 'Operations Director']] as $member)

    {{ $member['name'] }}

    {{ $member['designation'] }}

    @endforeach
    {{-- Mission & Vision --}}

    Mission & Vision

    {{-- Company Stats --}}

    Company Stats

    @endsection