@extends('layouts.main') @section('title') {{__("Create Tips")}} @endsection @section('page-title')

@yield('title')

@endsection @section('content')
< {{__("Back to All Tips")}}
@csrf
{{__("Add Tips")}}
@if($languages->isNotEmpty())
{{__("Translation")}}
@foreach($languages as $key=>$language)
{{($key+1).". ".$language->name}}
@endforeach
@endif
@endsection