firstcommit
This commit is contained in:
55
Modules/Activity/resources/views/create.blade.php
Normal file
55
Modules/Activity/resources/views/create.blade.php
Normal file
@@ -0,0 +1,55 @@
|
||||
@extends('admin::layouts.master')
|
||||
|
||||
@section('title')
|
||||
Create Activity
|
||||
@endsection
|
||||
|
||||
@section('breadcrumb')
|
||||
@php
|
||||
$breadcrumbData = [
|
||||
[
|
||||
'title' => 'Activity',
|
||||
'link' => 'null',
|
||||
],
|
||||
[
|
||||
'title' => 'Dashboard',
|
||||
'link' => route('dashboard'),
|
||||
],
|
||||
[
|
||||
'title' => 'Activities',
|
||||
'link' => null,
|
||||
],
|
||||
[
|
||||
'title' => 'Add Activity',
|
||||
'link' => null,
|
||||
],
|
||||
];
|
||||
@endphp
|
||||
@include('admin::layouts.partials.breadcrumb', $breadcrumbData)
|
||||
@endsection
|
||||
@section('content')
|
||||
{{-- {!! Form::open([
|
||||
'route' => 'activities.store',
|
||||
'method' => 'POST',
|
||||
'role' => 'form',
|
||||
'files' => true,
|
||||
]) !!} --}}
|
||||
{{-- {!! Form::close() !!} --}}
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xxl">
|
||||
<div class="card mb-4">
|
||||
<div class="card-header d-flex align-items-center justify-content-between">
|
||||
<h5 class="mb-0">Add Activity</h5>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<form
|
||||
action="{{ route('cms.activities.store')}}"
|
||||
method="POST" enctype="multipart/form-data">
|
||||
@csrf
|
||||
@include('activity::partial.form')
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
Reference in New Issue
Block a user