@extends('layouts.admin.admin') @section('title', 'Create Store') @section('content') @push('styles') @endpush
@include('partials.header') @include('partials.sidebar')
@include('partials.breadcrumbs')
Create Store
@csrf
@if ($errors->has('store_number')) {{ $errors->first('store_number') }} @endif
@if ($errors->has('store_name')) {{ $errors->first('store_name') }} @endif
@if ($errors->has('store_type')) {{ $errors->first('store_type') }} @endif
@if ($errors->has('division_id')) {{ $errors->first('division_id') }} @endif
@if ($errors->has('region_id')) {{ $errors->first('region_id') }} @endif
@if ($errors->has('area_id')) {{ $errors->first('area_id') }} @endif
@if ($errors->has('store_address')) {{ $errors->first('store_address') }} @endif
@if ($errors->has('store_zip')) {{ $errors->first('store_zip') }} @endif
@if ($errors->has('store_city')) {{ $errors->first('store_city') }} @endif
@if ($errors->has('store_state')) {{ $errors->first('store_state') }} @endif
@if ($errors->has('store_email')) {{ $errors->first('store_email') }} @endif
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
@if ($errors->has('area_id')) {{ $errors->first('area_id') }} @endif
@if ($errors->has('store_status')) {{ $errors->first('store_status') }} @endif
@push('script') @endpush @stop