@extends('layouts.app') @section('title', 'New Quote') @section('breadcrumb')Quotes New Quote@endsection @section('content')
@csrf @if($errors->any())
    @foreach($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif

Quote Details

Cancel
@endsection