@extends('../../master_layout/admin_master') @section('title') {{config('constants.APP_NAME')}} {{ ($edit)?'Edit':'Add' }} Country @endsection @section('custom_css') @endsection @section('content')

{{ ($edit)?'Edit':'Add' }} Country

@if(session('message'))
@if(session('message.type')=='danger')

Sorry! {!! session('message.text') !!}

@else

Success! {!! session('message.text') !!}

@endif
@endif
@csrf
@if ($errors->has('country_name')) {{ $errors->first('country_name') }} @endif
@if ($errors->has('country_flag')) {{ $errors->first('country_flag') }} @endif
@if ($errors->has('country_code')) {{ $errors->first('country_code') }} @endif