@extends('layouts.main-layout') @section('header')
@csrf
@stop @section('footer', true) @if(auth()->user()) @section('header-logo') @if(auth()->user()->campGroupIsAmbiguous()) {{asset('img/logos/titus-trust.svg')}} @else {{ auth()->user()->campGroups->first()->getLogo() }} @endif @stop @section('footer-logo') @if(auth()->user()->campGroupIsAmbiguous()) {{asset('img/logos/titus-trust-footer.svg')}} @else {{ auth()->user()->campGroups->first()->getLogo(white: true) }} @endif @stop @endif @section('content')
@yield('pages-content')
{{-- --}} @endsection