@extends('admin.layouts.dashboard') @php $title = "Add Shipping"; $button_text = "Add Shipping"; if(!empty($shipping)) { $title = "Edit Shipping"; $button_text = "Update Shipping"; } @endphp @section('title', $title) @section('content')

{{ $title }}

@if(!empty($shipping))
@else @endif @csrf @if(session()->has('failure'))
{{ session()->get('failure') }}
@endif @if(session()->has('success'))
{{ session()->get('success') }}
@endif
@endsection