29 lines
1.3 KiB
PHP
29 lines
1.3 KiB
PHP
@extends('backend.template')
|
|
@section('content')
|
|
<div class='card'>
|
|
<div class='card-header d-flex justify-content-between align-items-center'>
|
|
<h2 class="">{{ label('Add Team') }}</h2>
|
|
<?php createButton('btn-primary btn-cancel', '', 'Cancel', route('teams.index')); ?>
|
|
|
|
</div>
|
|
<div class='card-body'>
|
|
<form action="{{ route('teams.store') }}" id="storeCustomForm" method="POST">
|
|
@csrf
|
|
<div class="row">
|
|
<div class="col-lg-6">{{ createText('title', 'title', 'Title') }}
|
|
</div>
|
|
<div class="col-lg-12 pb-2">{{ createImageInput('photo', 'Photo') }}
|
|
</div>
|
|
<div class="col-lg-6">{{ createText('designation', 'designation', 'Designation') }}
|
|
</div>
|
|
<div class="col-lg-12 pb-2">
|
|
{{ createTextarea('description', 'description ckeditor-classic', 'Description') }}
|
|
</div> <br>
|
|
<div class="col-md-12"><?php createButton('btn-primary btn-store', '', 'Submit'); ?>
|
|
<?php createButton('btn-primary btn-cancel', '', 'Cancel', route('teams.index')); ?>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
@endsection
|