You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

21 lines
512 B

@extends('layout')
@section('head')
<meta name="csrf-token" content="{{ csrf_token() }}">
@endsection
@section('main')
<div class="container is-fluid">
<h1 class="title is-4 is-spaced mt-5">
Create Bucket
</h1>
<urban-bucket-form></urban-bucket-form>
</div>
@push('scripts')
<script type="text/javascript" src="/js/bucket.js"></script>
<script type="text/javascript" defer>
riot.mount('urban-bucket-form', {!! json_encode(old()) !!});
</script>
@endpush
@endsection