@extends('layouts.cashier')
@section('title','Add Advisor')
@section('breadcrumb')
Dashboard
Add Advisor
@endsection
@section('cashier-content')
@php
$action = route('cashier.advisors.store');
$cancelUrl = route('cashier.dashboard');
@endphp
@include('admin.advisors._form', ['action' => $action, 'cancelUrl' => $cancelUrl])
@endsection