@stack('head')

Layout Migration Notice

This page is using the legacy layouts.app layout.

Please update your view to use one of the new layouts:

Landing Layout

@extends('layouts.landing')

For marketing pages, services, about, contact

Dashboard Layout

@extends('layouts.dashboard')

For authenticated user pages

Auth Layout

@extends('layouts.auth')

For login, register pages

@auth Go to Dashboard @else Go to Home @endauth
@yield('content')
@stack('scripts') Vector Tracing About Contact @if(Auth::user()->isAdmin()) Dashboard Users Orders Invoices Testimonials @else Dashboard Quotes Orders Invoices @endif @endauth @guest @endguest
@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @yield('content')
@stack('scripts')