@extends('admin.template.master') @section('title')

Store Page all store page information

@endsection @section('main-content')

Update

{!! Form::open(['method' => 'PUT', 'url' => '/admin/stores/' .$store_page->id]) !!}
{!! Form::label('Item Type URL') !!} {!! Form::text('item_type_url', $store_page->item_type_url, ['class' => 'form-control', 'placeholder' => 'Name', 'id' => 'brand_name']) !!} @if ($errors->has('item_type_url')) {!! $errors->first('item_type_url') !!}@endif
{!! Form::close() !!}
@endsection