@extends('backend/layouts/default') {{-- Page title --}} @section('title') @if ($location->id) @lang('admin/locations/table.update') :: @else @lang('admin/locations/table.create') :: @endif @parent @stop {{-- Page content --}} @section('content')
@lang('general.back')

@if ($location->id) @lang('admin/locations/table.update') @else @lang('admin/locations/table.create') @endif

{{ $errors->first('name', '
:message') }}
{{ $errors->first('address', '
:message') }}
{{ $errors->first('address2', '
:message') }}
{{ $errors->first('city', '
:message') }}
{{ $errors->first('state', '
:message') }}
{{ $errors->first('zip', '
:message') }}
{{ Form::countries('country', Input::old('country', $location->country), 'select2') }}
{{ $errors->first('country', '
:message') }}
@lang('button.cancel')
@stop