@extends('layouts/contentNavbarLayout')
@section('title', 'Account Settings')
@section('vendor-style')
@endsection
@section('content')
Account Settings
@if (session('success'))
{{ session('success') }}
@endif
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@if ($activeTab === 'account')
{{-- Account tab --}}
@endif
@if ($activeTab === 'security')
{{-- Security tab: Change Password --}}
@endif
@endsection
@section('page-script')
@endsection