@extends('admin/layouts/default') {{-- Page title --}} @section('title') Edit a store @parent @stop @section('content')

Stores

Edit store

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::model($store, ['method' => 'PATCH', 'action' => ['StoresController@update', $store->id]]) !!}
{!! Form::label('name', 'Name: ') !!} {!! Form::text('name', null, ['class' => 'form-control']) !!}
{!! Form::label('address', 'Address: ') !!} {!! Form::textarea('address', null, ['class' => 'form-control', 'rows' => 3]) !!}
{!! Form::label('city', 'City: ') !!} {!! Form::text('city', null, ['class' => 'form-control']) !!}
{!! Form::label('country_id', 'Country: ') !!} {!! Form::select('country_id', $country, null, ['class' => 'form-control']) !!}
{!! Form::label('agent_id', 'Agent: ') !!} {!! Form::select('agent_id', $agent, null, ['class' => 'form-control']) !!}
{!! Form::label('seller_id', 'Seller: ') !!} {!! Form::select('seller_id', $seller, null, ['class' => 'form-control']) !!}
{!! Form::label('status_code', 'Status Code: ') !!} {!! Form::select('status_code', $status, null, ['class' => 'form-control']) !!}
{!! Form::submit('Update', ['class' => 'btn btn-primary form-control']) !!}
{!! Form::close() !!}
@stop