46 lines
1.3 KiB
PHP
46 lines
1.3 KiB
PHP
@extends('admin::layouts.master')
|
|
|
|
@section('title')
|
|
Create Team Member
|
|
@endsection
|
|
|
|
@section('breadcrumb')
|
|
@php
|
|
$breadcrumbData = [
|
|
[
|
|
'title' => 'Team Member',
|
|
'link' => 'null',
|
|
],
|
|
[
|
|
'title' => 'Dashboard',
|
|
'link' => route('dashboard'),
|
|
],
|
|
[
|
|
'title' => 'Team Members',
|
|
'link' => null,
|
|
],
|
|
[
|
|
'title' => 'Add Team Member',
|
|
'link' => null,
|
|
],
|
|
];
|
|
@endphp
|
|
@include('admin::layouts.partials.breadcrumb', $breadcrumbData)
|
|
@endsection
|
|
@section('content')
|
|
<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 Team Member</h5>
|
|
</div>
|
|
<div class="card-body">
|
|
<form action="{{ route('cms.team-members.store') }}" method="POST" enctype="multipart/form-data">
|
|
@csrf
|
|
@include('teammember::partial.form')
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|