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.
25 lines
724 B
25 lines
724 B
@extends('layouts.app')
|
|
|
|
@section('title', 'Create')
|
|
|
|
@section('content')
|
|
|
|
<div class="row">
|
|
<div class="col-md-5">
|
|
<h3>Create</h3>
|
|
</div>
|
|
<div class="col-md-7 page-action text-right">
|
|
<a href="{{ route('posts.index') }}" class="btn btn-default btn-sm"> <i class="fa fa-arrow-left"></i> Back</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
{!! Form::open(['route' => ['posts.store'] ]) !!}
|
|
@include('post._form')
|
|
<!-- Submit Form Button -->
|
|
{!! Form::submit('Create', ['class' => 'btn btn-primary']) !!}
|
|
{!! Form::close() !!}
|
|
</div>
|
|
</div>
|
|
@endsection |