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.
31 lines
1.0 KiB
31 lines
1.0 KiB
@extends('layouts.app')
|
|
|
|
@section('title', 'Edit Post ')
|
|
|
|
@section('content')
|
|
|
|
<div class="row">
|
|
<div class="col-md-5">
|
|
<h3>Edit</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="wrapper wrapper-content animated fadeInRight">
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<div class="ibox float-e-margins">
|
|
<div class="ibox-content">
|
|
{!! Form::model($post, ['method' => 'PUT', 'route' => ['posts.update', $post->id ] ]) !!}
|
|
@include('post._form')
|
|
<!-- Submit Form Button -->
|
|
{!! Form::submit('Save Changes', ['class' => 'btn btn-primary']) !!}
|
|
{!! Form::close() !!}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection |