first commit
This commit is contained in:
@ -0,0 +1,33 @@
|
||||
@extends('backend.template')
|
||||
@section('content')
|
||||
<div class='card'>
|
||||
<div class='card-header d-flex justify-content-between align-items-center'>
|
||||
<h4 class="">{{ label('Add Visa Grant Post') }}</h4>
|
||||
</div>
|
||||
<div class='card-body'>
|
||||
<form action="{{ route('visagrantposts.store') }}" id="storeCustomForm" method="POST">
|
||||
@csrf
|
||||
<div class="row">
|
||||
<div class="col-lg-6">{{ createText('title', 'title', 'Title') }}
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
<label for="image" class="col-form-label">Visa Grant Image</label>
|
||||
{{ createImageInput('image', 'Image') }}
|
||||
</div>
|
||||
{{--<div class="col-lg-6">
|
||||
<label for="display_type" class="col-form-label">Display Place</label>
|
||||
<select class="form-control form-select" name="display_type" placeholder="Select where to display">
|
||||
<option selected disabled>Select where to display...</option>
|
||||
<option value="1">Visa Grant</option>
|
||||
<option value="2">Scholarships</option>
|
||||
</select>
|
||||
</div> <br> --}}
|
||||
<div class="col-lg-12 pb-2">{{ createPlainTextArea('remarks', 'remarks ', 'Remarks') }}
|
||||
</div>
|
||||
<div class="col-lg-12 mt-2"><?php createButton('btn-primary btn-store', '', 'Submit'); ?>
|
||||
<?php createButton('btn-danger btn-cancel', '', 'Cancel', route('visagrantposts.index')); ?>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
Reference in New Issue
Block a user