Add create another and cancel buttons in custom form

I created a custom form but I need to know how can i include the create another and cancel buttons in the page, with their respective styling.
<x-filament::page>
    <form wire:submit.prevent="submit">
        {{ $this->form }}
        <div class="mt-4">
            <x-filament::button type="submit">
                Create
            </x-filament::button>
        </div>
    </form>
</x-filament::page>

I currently only know the create button process.
Was this page helpful?