@extends('layouts.layout-2') @section('content') @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

{{ __('navigation.my_shop') }} / {{ __('navigation.settings') }}

{!! Form::open(['action' => route('user_shop_store'), 'class' => 'form-horizontal', 'id'=>"user-shop-form-validations"]) !!} @include('user.shop.form')
 
{!! Form::close() !!} @endsection