@extends('backend.layouts.app') @section('title', @$data['title']) @section('content')

{{ @$data['title'] }}

@if(hasPermission('subscription_currency_read')) {{ _trans('common.Back') }} @endif
@csrf
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if ($errors->has('code'))
{{ $errors->first('code') }}
@endif
@if ($errors->has('symbol'))
{{ $errors->first('symbol') }}
@endif
@if ($errors->has('position'))
{{ $errors->first('position') }}
@endif
@if ($errors->has('precision'))
{{ $errors->first('precision') }}
@endif
@if(hasPermission('leave_type_create'))
@endif
@endsection