芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/kwesioben.com/paymoney/resources/views/admin/countries/add.blade.php
@extends('admin.layouts.master') @section('title', __('Add Country')) @section('page_content')
@include('admin.common.settings_bar')
{{ __('Add Country') }}
{{ csrf_field() }}
{{ __('Short Name') }}
@if($errors->has('short_name'))
{{ $errors->first('short_name') }}
@endif
{{ __('Long Name') }}
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif
{{ __('ISO3') }}
@if($errors->has('iso3'))
{{ $errors->first('iso3') }}
@endif
{{ __('Number Code') }}
@if($errors->has('number_code'))
{{ $errors->first('number_code') }}
@endif
{{ __('Phone Code') }}
@if($errors->has('phone_code'))
{{ $errors->first('phone_code') }}
@endif
{{ __('Default') }}
{{ __('No') }}
{{ __('Yes') }}
@if($errors->has('is_default'))
{{ $errors->first('is_default') }}
@endif
@endsection @push('extra_body_scripts') @endpush