@extends('backend.layouts.layout-2') @if($edit) @section('page-title', trans('app.edit_items')) @section('page-heading', trans('app.edit_items')) @else @section('page-title', trans('app.add_items')) @section('page-heading', trans('app.add_items')) @endif @section('styles') @parent @endsection @section('scripts') @parent @endsection @section('content') @if($edit) {!! Form::open(['route' => ['items.update',$item->id], 'method' => 'PUT','files' => true, 'id' => 'page-form']) !!} @else {!! Form::open(['route' => 'items.store', 'files' => true, 'id' => 'page-form']) !!} @endif
@lang('app.page_details')
{!! Form::text('name',$edit ? $item->name : old('name'),['class' => 'form-control','placeholder' => trans('app.title')]) !!}
@if($edit)
@endif
{!! Form::close() !!} @stop