@extends('admin.layouts.app') @section('content') Shipping Edit Back @include('admin.message') Country Select a Country @if (count($countries) > 0) @foreach ($countries as $country) country_id == $country->id) ? 'selected' : '' }} value="{{ $country->id }}">{{ $country->name }} @endforeach country_id == 'rest_of_world') ? 'selected' : '' }} value="rest_of_world">Rest of the World @endif Amount Update Cancel @endsection @section('customJs') @endsection