@extends('layouts.main') @push('nav_title') Send Email Form @endpush @section('page_title')

{{$title}}

@endsection @section('side_bar') @include('layouts/side_bar') @endsection @section('profile') @include('layouts/profile') @endsection @section('main_div')
@csrf
@error('mail_mailer') {{$message}} @enderror
@error('mail_host') {{$message}} @enderror
@error('mail_port') {{$message}} @enderror
@error('mail_username') {{$message}} @enderror
@error('mail_password') {{$message}} @enderror
@error('mail_from_address') {{$message}} @enderror
@error('mail_from_name') {{$message}} @enderror
@error('encryption') {{$message}} @enderror

Product Settings

@include('layouts.product_settings')

Project Color

@csrf
@foreach($colors as $color)
Primary: {{$color->primary_color}} Secondary: {{$color->secondary_color}}
@endforeach
@endsection