@extends('admin.layout') @section('content')

{{ __('Shipping Method') }}

{{ __('Edit Shipping Method') }}

@csrf
@if ($errors->has('language_id'))

{{ $errors->first('language_id') }}

@endif
@if ($errors->has('title'))

{{ $errors->first('title') }}

@endif
@if ($errors->has('subtitle'))

{{ $errors->first('subtitle') }}

@endif
@if ($errors->has('cost'))

{{ $errors->first('cost') }}

@endif
@if ($errors->has('status'))

{{ $errors->first('status') }}

@endif
@endsection