@extends('admin.master', ['menu' => 'coin', 'sub_menu' => 'coin_list']) @section('title', isset($title) ? $title : '') @section('style') @endsection @section('content')
  • {{ __('Coin') }}
  • {{ $title }}
{{ Form::open(['route' => 'adminSaveCoin', 'files' => true]) }} {{--
--}}
{{ __('Currency Type') }}
{{ __('Coin Full Name') }}
{{ $errors->first('name') }}
{{ __('Coin Type') }}
{{ __('Please make sure your coin type is right. Never input wrong coin type') }}
{{ $errors->first('coin_type') }}
@php $isGetPriceArray = [STATUS_ACTIVE => 'Yes', STATUS_REJECTED => 'No']; @endphp
{{ __('If no , please input the coin price') }}
{{ __('Coin Price (in USD)') }}
USD
{{ __('Coin price in USD. it will update by currency api regularly') }}
{{ $errors->first('coin_price') }}
{{ __('Coin API') }}
{{ __('Please make sure your coin API is right.You never change this API. So be careful') }}
{{ $errors->first('network') }}
{{--
--}} {{ Form::close() }}
@endsection @section('script') @endsection