@extends('backend.layouts.app') @section('page-title', trans('app.edit_shop')) @section('page-heading', $shop->title) @section('content')
@include('backend.partials.messages')
{!! Form::open(['route' => array('backend.shop.update', $shop->id), 'files' => true, 'id' => 'user-form']) !!}

@lang('app.edit_shop')

@include('backend.shops.partials.base', ['edit' => true])
{!! Form::close() !!}
@stop